alacritty: Make colorscript use fuzzel instead of rofi

This commit is contained in:
histalek 2022-03-13 11:17:54 +01:00
parent 83d134272f
commit 52271dd504
No known key found for this signature in database
GPG key ID: ED1D6449704FDE03

View file

@ -17,7 +17,7 @@ declare -a options=(
"quit"
)
choice=$(printf '%s\n' "${options[@]}" | rofi -dmenu -i -l 20 -p 'Themes')
choice=$(printf '%s\n' "${options[@]}" | fuzzel --dmenu -l 20 --prompt='Themes')
if [[ "$choice" == quit ]]; then
echo "No Theme Chosen" && exit 1