aboutsummaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: e602819d3556543d383c09d83540edaa85e85cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap

# merge in defaults and keymaps
if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

export $(dbus-launch)
export $(gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)

exec bspwm