Changed dot-config to .config

This commit is contained in:
agryphus 2024-02-27 15:46:37 -05:00
parent 9ea93f8144
commit 0ab0f24015
118 changed files with 29 additions and 980 deletions

15
misc/.local/bin/entrs Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env zsh
accent="$ACCENT_COLOR"
if [ -z "$accent" ]; then
accent=blue
fi
loc="$HOME/.config"
echo "$loc/starship.def.toml" | entr sh -c "
rm $loc/starship.toml
sed 's/\${ACCENT_COLOR}/$accent/g' $loc/starship.def.toml > $loc/starship.toml
notify-send 'Updated starship.toml'
"