blob: 51501252adbb9737974887bcb00d2b304f52c60e (
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
# if command -v dbus-launch > /dev/null && test -z "${DBUS_SESSION_BUS_ADDRESS}"; then
# eval $(dbus-launch --sh-syntax --exit-with-session)
# fi
eval "$(gpg-agent --daemon --allow-preset-passphrase)"
eval "$(ssh-agent)"
xset r rate 200 20
xset s off -dpms
setxkbmap -layout us,us -variant dvorak, -option "ctrl:nocaps,lv3:rwin_switch,grp:alt_space_toggle"
xrandr --auto --output HDMI-A-0 --mode 1920x1080 --primary
xrandr --auto --output DisplayPort-2 --mode 1600x900 --left-of HDMI-A-0
~/.local/bin/set-wallpaper &
# /usr/bin/emacs --daemon &
pipewire &
otd-daemon &
mpd &
picom &
statusbar &
exec dwm
|