awesome/autorun.sh

14 lines
151 B
Bash
Raw Normal View History

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