8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# dmenu script to open up my games
|
|
|
|
choice=$(game-run | dmenu -p "Choose game to run:")
|
|
|
|
game-run "$choice"
|