2022-03-21 18:05:05 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# A script to run my game specifiy ryzenadj scripts
|
|
|
|
|
2022-07-17 11:03:13 +02:00
|
|
|
source $HOME/.config/dmenu/config
|
2022-03-21 18:05:05 +01:00
|
|
|
|
|
|
|
# cd into the given directory
|
|
|
|
cd $1
|
|
|
|
|
2022-07-17 11:03:13 +02:00
|
|
|
profile=$(ls -1 -A | $DMENU -l 5 -p "Choose your file!")
|
2022-03-21 18:05:05 +01:00
|
|
|
|
|
|
|
[ -n "$profile" ] || exit
|
|
|
|
|
2022-06-19 20:02:03 +02:00
|
|
|
$1/$profile
|