dmenu-scripts/dmenu-games

14 lines
284 B
Plaintext
Raw Normal View History

2022-03-21 18:05:05 +01:00
#!/bin/bash
2021-05-01 09:12:33 +02:00
2022-04-05 16:59:13 +02:00
# dmenu script to open up my games or game launcher's
2022-03-21 18:05:05 +01:00
declare -a Games=(
"Heroic (Launcher)"
"Lutris (Launcher)"
)
2021-05-01 09:12:33 +02:00
2022-03-21 18:05:05 +01:00
case "$(printf "%s\n" "${Games[@]}" | dmenu -p "Choose your game")" in
2022-04-05 16:59:13 +02:00
"Heroic (Launcher)") heroic ;;
2022-03-21 18:05:05 +01:00
"Lutris (Launcher)") lutris ;;
esac