20 lines
340 B
Bash
20 lines
340 B
Bash
#!/bin/sh
|
|
|
|
sh .xprofile;
|
|
dunst &
|
|
systemctl start --user emacs &
|
|
$(xss-lock --transfer-sleep-lock -- lock) &
|
|
feh --randomize --bg-scale $HOME/Pictures/Backgrounds &
|
|
|
|
while true; do
|
|
killall picom;
|
|
killall mpd;
|
|
killall sxhkd;
|
|
killall dwmblocks;
|
|
picom &
|
|
mpd &
|
|
sxhkd &
|
|
dwmblocks &
|
|
ssh-agent dwm || break
|
|
done
|