Using a config made dmenu.

This commit is contained in:
Crony Akatsuki 2022-07-17 11:03:13 +02:00
parent 587f300ac7
commit 321f370263
19 changed files with 63 additions and 28 deletions

View file

@ -2,6 +2,8 @@
# dmenu script to run one of my most runned programs
source $HOME/.config/dmenu/config
declare -a software=(
"bitwarden-desktop"
"megasync"
@ -9,7 +11,7 @@ declare -a software=(
"discord"
)
choice=$(printf "%s\n" "${software[@]}" | dmenu -p "Choose software to run")
choice=$(printf "%s\n" "${software[@]}" | $DMENU -p "Choose software to run")
[ -n $choice ] || exit