Update configs
This commit is contained in:
parent
9da9b945d9
commit
735040891e
2 changed files with 5 additions and 6 deletions
|
@ -27,15 +27,14 @@ if [[ $url =~ $re ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
project="$user/$repo"
|
project="$user/$repo"
|
||||||
|
pass_paths=()
|
||||||
|
pass_content=$(pass "ansible/$project")
|
||||||
|
|
||||||
if ! pass "ansible/$project" >/dev/null 2>&1; then
|
if [ "$?" -ne 0 ]; then
|
||||||
echo "Error: ansible/$project not found in pass" >&2
|
echo "Error: failed to load ansible/$project from pass" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pass_content=$(pass "ansible/$project")
|
|
||||||
pass_paths=()
|
|
||||||
|
|
||||||
grep_filter="^path:"
|
grep_filter="^path:"
|
||||||
if [ -n "$target" ]; then
|
if [ -n "$target" ]; then
|
||||||
grep_filter="^path: $target$"
|
grep_filter="^path: $target$"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
freefont_ttf
|
freefont_ttf
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
nerd-fonts.jetbrains-mono
|
||||||
noto-fonts
|
noto-fonts
|
||||||
roboto
|
roboto
|
||||||
twitter-color-emoji
|
twitter-color-emoji
|
||||||
|
|
Loading…
Reference in a new issue