----- Changes:

+ Rework a lot of stuff
This commit is contained in:
ziro 2020-05-23 13:49:13 +07:00
parent 7d757116d2
commit 18f105cea0
9 changed files with 31 additions and 9 deletions

View file

@ -28,7 +28,7 @@ chosen=$(echo -e "$choices" | rofi -p Games -dmenu -i -theme ~/.config/rofi/them
case "$chosen" in
RetroArch) notify-send "Launching..." "$chosen" && retroarch ;;
$pc) games -t PC ;;
PS2) sh $HOME/.scripts/games/ps2.sh ;;
PS2) games -t PS2 ;;
NDS) sh $HOME/.scripts/games/nds.sh ;;
$trids) games -t 3DS ;;
Steam) notify-send "Launching..." "$chosen" && steam ;;

View file

@ -4,7 +4,8 @@ Electron Player\0icon\x1fzE
KODI\0icon\x1fzkodi
Twitch\0icon\x1fztwitch
VLC\0icon\x1fzvlc
YouTube\0icon\x1fzyt"
YouTube\0icon\x1fzyt
Play link on MPV"
message="What video player do you want to launch?"
@ -16,6 +17,7 @@ case "$chosen" in
VLC) notify-send "Launching..." "VLC" && vlc ;;
YouTube) notify-send "Launching..." "$chosen" && urxvt -e youtube-viewer ;;
Twitch) notify-send "Launching..." "$chosen" && urxvt -e twitch-curses ;;
"Play link on MPV") mpv-link ;;
esac