diff options
Diffstat (limited to 'xorg')
-rw-r--r-- | xorg/.Xresources | 15 | ||||
-rw-r--r-- | xorg/.xinitrc | 17 |
2 files changed, 32 insertions, 0 deletions
diff --git a/xorg/.Xresources b/xorg/.Xresources new file mode 100644 index 0000000..f8f17bb --- /dev/null +++ b/xorg/.Xresources @@ -0,0 +1,15 @@ +URxvt.foreground: white +URxvt.background: black +URxvt.scrollBar: false +URxvt.transparent: false +URxvt.font: xft:monospace:size=8 +URxvt.perl-ext-common: vtwheel,matcher,clipboard +URxvt.saveLines: 10000 +URxvt.inheritPixmap: false +URxvt.matcher.button: 1 +URxvt.matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-] +URxvt.urlLauncher: firefox +URxvt.keysym.Control-Up: \033[1;5A +URxvt.keysym.Control-Down: \033[1;5B +URxvt.keysym.Control-Left: \033[1;5D +URxvt.keysym.Control-Right: \033[1;5C 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 |