14 lines
151 B
Bash
Executable File
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" &
|