Update configs due to newer programs (hypr, eza@aliasrc)

Add new features to ansible-vault-manager
Add search engines to qutebrowser
Add location to waybar weather
This commit is contained in:
Tobias Reisinger 2023-12-11 00:36:03 +01:00
parent 7300c7a813
commit 6f6ca6f79d
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
9 changed files with 49 additions and 16 deletions

View file

@ -25,5 +25,22 @@ if ! pass "ansible/$project" >/dev/null 2>&1; then
exit 1
fi
pass "ansible/$project"
pass_content=$(pass "ansible/$project")
pass_path=$project_dir/$(echo "$pass_content" | grep "path:" | cut -d' ' -f2-)
case "$1" in
edit)
pass edit "ansible/$project"
exit 0
;;
deploy)
pass show "ansible/$project.file" > "$pass_path"
exit 0
;;
save)
pass insert -m "ansible/$project.file" < "$pass_path"
exit 0
;;
esac
echo "$pass_content" | head -n 1