37 lines
559 B
Bash
Executable File
37 lines
559 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function run {
|
|
if ! pgrep $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
# utilities in top bar
|
|
# network manager
|
|
run /usr/bin/nm-applet
|
|
# bluetooth indicator
|
|
run /usr/bin/blueman-manager
|
|
# screenshot utility
|
|
run /usr/bin/shutter
|
|
# volume control
|
|
run /usr/bin/pasystray
|
|
|
|
# tag 1
|
|
run idea
|
|
# tag 2
|
|
run /opt/google/chrome/chrome
|
|
# tag 3
|
|
run /usr/bin/terminator
|
|
# tag 4
|
|
run /usr/bin/code
|
|
# tag 5
|
|
run /usr/bin/zoom
|
|
run /usr/bin/teams
|
|
tag 6
|
|
run /snap/bin/rocketchat-desktop
|
|
run /usr/bin/thunderbird
|
|
# tag 7
|
|
run /usr/local/bin/bitwarden
|
|
run /usr/bin/keepassx
|