nixrice/misc/dot-local/bin/entrs
2024-02-25 23:58:49 -05:00

15 lines
307 B
Bash
Executable file

#!/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'
"