dmenu-scripts/dmenu-programs

17 lines
269 B
Plaintext
Raw Normal View History

2022-03-21 18:05:05 +01:00
#!/bin/bash
2022-04-05 16:59:13 +02:00
# dmenu script to run one of my most runned programs
2022-03-21 18:05:05 +01:00
declare -a software=(
2022-04-05 16:59:13 +02:00
"bitwarden-desktop"
"megasync"
"spotify"
"discord"
2022-03-21 18:05:05 +01:00
)
choice=$(printf "%s\n" "${software[@]}" | dmenu -p "Choose software to run")
[ -n $choice ] || exit
$choice