15 lines
233 B
Bash
Executable File
15 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# A script to run my game specifiy ryzenadj scripts
|
|
|
|
source $HOME/.config/dmenu/config
|
|
|
|
# cd into the given directory
|
|
cd $1
|
|
|
|
profile=$(ls -1 -A | $DMENU -l 5 -p "Choose your file!")
|
|
|
|
[ -n "$profile" ] || exit
|
|
|
|
$1/$profile
|