blob: 9a9ea50e6a7eff95c7078c394188634929afcbf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
killall picom;
killall sxhkd;
sh .xprofile;
xset s 1800;
xrandr --auto --output HDMI1 --primary;
xrandr --auto --output eDP1 --right-of HDMI1;
xrandr --auto --output VGA1 --primary --left-of DP1;
xrandr --auto --output DP1;
$(xss-lock --transfer-sleep-lock -- $HOME/.local/scripts/lock) &
$HOME/.local/scripts/background &
systemctl --user start emacs &
$HOME/.local/scripts/status/music_update_bar &
dunst &
picom &
sxhkd &
dwmblocks &
# $HOME/.config/bspwm/bspwmrc
while :; do
dwm
done
|