blob: 213b2b02ff2e3be5644b257e846c026257e8141e (
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
28
29
30
31
32
|
#!/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)"
xrandr --addmode HDMI-A-0 1280x960
xrandr --output HDMI-A-0 --mode 1280x960 --primary
xrandr --output DisplayPort-2 --mode 1920x1080 --left-of HDMI-A-0
# xrandr --output DisplayPort-2 --mode 1920x1080 --primary
# xrandr --output HDMI-A-0 --mode 1280x960 --left-of DisplayPort-2
rfkill block bluetooth
xset r rate 250 30
xset s off -dpms
setxkbmap -option "ctrl:nocaps"
xrdb -merge ~/.Xresources
~/.local/bin/set-wallpaper &
/usr/bin/emacs --daemon &
urxvtd -q -o -f &
ibus-daemon -d -r -x
pipewire &
mpd &
#exec i3
exec ratpoison
|