Update.
This commit is contained in:
parent
5fe9ae3c00
commit
19ee4a7871
10 changed files with 152 additions and 25 deletions
16
dmenuprograms
Executable file
16
dmenuprograms
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue