Updated my scripts.
This commit is contained in:
parent
7c981ce281
commit
272fb806ef
17 changed files with 128 additions and 82 deletions
16
dmenu-programs
Executable file
16
dmenu-programs
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
# dmenu script to run one of my most runned programs
|
||||
|
||||
declare -a software=(
|
||||
"bitwarden-desktop"
|
||||
"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