awesome/autorun.sh

16 lines
236 B
Bash
Raw Permalink Normal View History

2024-03-15 12:05:10 +01:00
#!/bin/sh
run() {
if ! pgrep -f "$1"; then
"$@" &
fi
}
# run "" &
2024-03-15 12:53:51 +01:00
run "/usr/lib/polkit-kde-authentication-agent-1" &
run "/usr/lib/pam_kwallet_init" &
2024-03-15 12:05:10 +01:00
run "xcompmgr" &
run "conky" &
run "nextcloud" &
run "nm-applet" &