+ Added scripts directory

This commit is contained in:
ziro 2020-04-19 14:31:51 +07:00
parent c42020a930
commit 08332199a2
23 changed files with 547 additions and 0 deletions

13
.scripts/games/pc.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/dash
#Game Lists ------------
games="Back\0icon\x1fzback\nTint (Tetris Clone)\nNothing."
#Scripts ---------------
chosen=$(echo -e "$games" | rofi -dmenu -i -theme ~/.config/rofi/theme/sidebar)
case $chosen in
Back) sh ~/.scripts/play.sh ;;
"Tint (Tetris Clone)") notify-send "Launching..." "$chosen" && urxvt -e tint ;;
"Nothing.") notify-send "$chosen" "Not available yet." ;;
esac