By reinstalling arch on my laptop, I've had the chance to see any loose ends or errors in my setup that, by virtue of how fresh the system is, I'm motivated to fix.
26 lines
418 B
Bash
26 lines
418 B
Bash
#!/bin/sh
|
|
|
|
killall picom;
|
|
killall sxhkd;
|
|
|
|
sh .xprofile;
|
|
xset s 1800;
|
|
xrandr --output HDMI1 --primary;
|
|
xrandr --output eDP1 --right-of HDMI1;
|
|
|
|
$(xss-lock --transfer-sleep-lock -- lock) &
|
|
$HOME/.local/scripts/background &
|
|
|
|
eval `ssh-agent` &
|
|
systemctl --user start emacs &
|
|
$HOME/.local/scripts/status/music_update_bar &
|
|
dunst &
|
|
picom &
|
|
sxhkd &
|
|
dwmblocks &
|
|
|
|
# $HOME/.config/bspwm/bspwmrc
|
|
while :; do
|
|
ssh-agent dwm
|
|
done
|