10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[[ ! $(pidof compton) ]] && compton
|
|
[[ ! $(pidof unclutter) ]] && unclutter
|
|
[[ ! $(pidof mpd) ]] && mpd
|
|
[[ ! $(pidof transmission-daemon) ]] && transmission-daemon
|
|
[[ ! $(pidof dunst) ]] && dunst
|
|
[[ ! $(pidof nm-applet) ]] && nm-applet
|
|
|