diff options
author | Adrian Kummerländer | 2014-02-22 11:22:26 +0100 |
---|---|---|
committer | Adrian Kummerländer | 2014-02-22 11:22:26 +0100 |
commit | 53970d5b8478d50a21ffa4dd0ff1ab23232460fc (patch) | |
tree | 8a8da4688768ca8450eb820f0a879ef5ca3c7344 | |
parent | f9ff223d4a86bb0e5a40cfa85fd9a59050f984e9 (diff) | |
download | dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar.gz dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar.bz2 dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar.lz dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar.xz dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.tar.zst dotfiles-53970d5b8478d50a21ffa4dd0ff1ab23232460fc.zip |
Added xinit configuration and moved Xressources into xorg folder
* Xressources can contain more than just urxvt configuration and as such doesn't belong into a urxvt specific folder
* xinitrc remaps caps lock to escape
-rw-r--r-- | xorg/.Xresources (renamed from urxvt/.Xresources) | 0 | ||||
-rw-r--r-- | xorg/.xinitrc | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/urxvt/.Xresources b/xorg/.Xresources index f8f17bb..f8f17bb 100644 --- a/urxvt/.Xresources +++ b/xorg/.Xresources diff --git a/xorg/.xinitrc b/xorg/.xinitrc new file mode 100644 index 0000000..b94f742 --- /dev/null +++ b/xorg/.xinitrc @@ -0,0 +1,17 @@ +#!/bin/sh + +xset b off +xset b 0 0 0 +xrdb -merge ~/.Xresources + +setxkbmap de +xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape' + +source /etc/X11/xinit/xinitrc.d/30-dbus +eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh) +export SSH_AUTH_SOCK +export GPG_AGENT_INFO +export GNOME_KEYRING_CONTROL +export GNOME_KEYRING_PID + +exec dbus-launch i3 |