aboutsummaryrefslogtreecommitdiff
path: root/.local/etc/x/xinitrc
blob: 77edd40b8ac3e7b0e4325b16adef396e1848828b (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
33
34
35
36
37
38
39
40
41
42
# start dbus if necessary
[ -f "/etc/X11/xinit/xinitrc.d/80-dbus" ] && source /etc/X11/xinit/xinitrc.d/80-dbus

# start polkit auth agent
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh,gpg)
export GNOME_KEYRING_PID
export GNOME_KEYRING_SOCKET
export SSH_AUTH_SOCK

# extend the fontpath
xset +fp ~/.fonts/Terminus/BDF
#xset +fp /usr/share/fonts/local

# set the default mousepointer
xsetroot -cursor_name left_ptr

# load the .Xresources
xrdb -merge ~/.Xresources

# xkbmap options
setxkbmap \
	-layout us \
	 \
	-option compose:menu \
	-option caps:escape

# add altgr
xmodmap -e "keycode 108 = ISO_Level3_Shift"

# Enable sound through PulseAudio
pulseaudio --start

# set a wallpaper
chwp &

# start background processes
redshift -l 51.50:4.59 &
dunst &
sxhkd &

# Start x11vnc
x11vnc -display "$DISPLAY" &