dotfiles/.config/rofi/scripts/themes

22 lines
486 B
Plaintext
Raw Normal View History

2024-07-11 00:01:49 +05:30
#!/bin/bash
options=("󱄖 Cozy" "󰞇 Sakura" "󰌪 Natura" "󱢗 Everforest")
selected=$(printf '%s\n' "${options[@]}" | rofi -dmenu -l 4 -i -mesg "T H E M E S")
case $selected in
"󱄖 Cozy")
sh ~/.config/rofi/scripts/Cozy
;;
"󰞇 Sakura")
sh ~/.config/rofi/scripts/Sakura
;;
"󰌪 Natura")
sh ~/.config/rofi/scripts/Natura
;;
"󱢗 Everforest")
sh ~/.config/rofi/scripts/Everforest
;;
*)
;;
esac