dotfiles/.scripts/games/nds.sh
2020-04-19 14:31:51 +07:00

15 lines
422 B
Bash
Executable file

#!/bin/dash
#Game Lists ------------
games="Back\0icon\x1fzback
Pokemon Black\0icon\x1fzndscart
Pokemon Black 2\0icon\x1fzndscart"
#Scripts ---------------
chosen=$(echo -e "$games" | rofi -dmenu -i -theme ~/.config/rofi/theme/sidebar)
case $chosen in
Back) sh ~/.scripts/play.sh ;;
"Pokemon Black") notify-send "$chosen" "Not available yet." ;;
"Pokemon Black 2") notify-send "$chosen" "Not available yet." ;;
esac