blob: cbaec52080692171c6f77488200ffddc6c9b837c (
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
|
#!/bin/sh
rfkill block all
eval "$(gpg-agent --daemon --allow-preset-passphrase --write-env-file "$envfile")"
eval "$(ssh-agent)"
xset r rate 300 30
xset s off -dpms
setxkbmap -option "ctrl:nocaps"
xrandr --auto --output HDMI-A-0 --mode 1920x1080 --primary
xrandr --auto --output DisplayPort-2 --mode 1600x900 --left-of HDMI-A-0
dbus-launch --sh-syntax --exit-with-session
ibus-daemon -dxrR
statusbar &
pipewire &
mpd &
/usr/local/bin/emacs --daemon &
picom &
set-wallpaper &
exec dwm >/dev/null 2>&1
|