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