2022-03-21 18:05:05 +01:00
|
|
|
#!/bin/bash
|
2021-05-01 09:12:33 +02:00
|
|
|
|
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
|
|
|
|
"Heroic (Launcher)") heroic ;;
|
|
|
|
"Lutris (Launcher)") lutris ;;
|
|
|
|
esac
|