awesome/autorun.sh
2024-03-15 12:05:10 +01:00

14 lines
151 B
Bash
Executable File

#!/bin/sh
run() {
if ! pgrep -f "$1"; then
"$@" &
fi
}
# run "" &
run "xcompmgr" &
run "conky" &
run "nextcloud" &
run "nm-applet" &