awesome/autorun.sh
2024-03-15 12:53:51 +01:00

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" &