16 lines
236 B
Bash
Executable File
16 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
|
|
run() {
|
|
if ! pgrep -f "$1"; then
|
|
"$@" &
|
|
fi
|
|
}
|
|
|
|
# run "" &
|
|
run "/usr/lib/polkit-kde-authentication-agent-1" &
|
|
run "/usr/lib/pam_kwallet_init" &
|
|
run "xcompmgr" &
|
|
run "conky" &
|
|
run "nextcloud" &
|
|
run "nm-applet" &
|