2023-08-13 17:57:18 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## run (only once) processes which spawn with the same name
|
|
|
|
function run {
|
|
|
|
if (command -v $1 && ! pgrep $1); then
|
|
|
|
$@&
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2023-08-13 18:04:30 +04:00
|
|
|
run picom
|
|
|
|
run nm-applet
|
|
|
|
run blueman-applet
|
2023-08-13 17:57:18 +04:00
|
|
|
run keepassxc
|
2023-08-13 18:04:30 +04:00
|
|
|
run flameshot
|
|
|
|
run discord
|