dmenu-scripts/dmenuprograms
cronyakatsuki 19ee4a7871 Update.
2022-03-21 18:05:05 +01:00

17 lines
213 B
Bash
Executable File

#!/bin/bash
declare -a software=(
"bitwarden-desktop"
"obs"
"godot"
"megasync"
"spotify"
"discord"
)
choice=$(printf "%s\n" "${software[@]}" | dmenu -p "Choose software to run")
[ -n $choice ] || exit
$choice