18 lines
296 B
Bash
Executable File
18 lines
296 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function run {
|
|
if ! pgrep -f $1 ;
|
|
then
|
|
$@&
|
|
fi
|
|
}
|
|
|
|
run picom
|
|
run kdeconnect-indicator
|
|
run cbatticon -l 20 -r 5 -n
|
|
run blueman-applet
|
|
run nm-applet
|
|
run pasystray --notify=none
|
|
run playerctld daemon
|
|
run /usr/lib/mate-polkit/polkit-mate-authentication-agent-1
|