aboutsummaryrefslogtreecommitdiffstats
path: root/X/.xinitrc
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-02-28 19:49:47 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-02-28 19:49:47 +0000
commita54125ec2d5a43a6f3e578681f0862114c3b8745 (patch)
tree75d4a3ec8e426d6ca4779384f1f08c538a7c3aa5 /X/.xinitrc
parentd0943595971d8d03583fbe760f118846637a2de4 (diff)
downloaddotfiles-a54125ec2d5a43a6f3e578681f0862114c3b8745.tar.gz
dotfiles-a54125ec2d5a43a6f3e578681f0862114c3b8745.zip
Adding tmux, zsh and X config
Diffstat (limited to 'X/.xinitrc')
-rw-r--r--X/.xinitrc51
1 files changed, 51 insertions, 0 deletions
diff --git a/X/.xinitrc b/X/.xinitrc
new file mode 100644
index 0000000..4287a7a
--- /dev/null
+++ b/X/.xinitrc
@@ -0,0 +1,51 @@
+#!/bin/sh
+
+userresources=$HOME/.Xresources
+usermodmap=$HOME/.Xmodmap
+sysresources=/etc/X11/xinit/.Xresources
+sysmodmap=/etc/X11/xinit/.Xmodmap
+
+# merge in defaults and keymaps
+
+if [ -f $sysresources ]; then
+
+
+
+
+
+
+
+ xrdb -merge $sysresources
+
+fi
+
+if [ -f $sysmodmap ]; then
+ xmodmap $sysmodmap
+fi
+
+if [ -f "$userresources" ]; then
+
+
+
+
+
+
+
+ xrdb -merge "$userresources"
+
+fi
+
+if [ -f "$usermodmap" ]; then
+ xmodmap "$usermodmap"
+fi
+
+# start some nice programs
+
+if [ -d /etc/X11/xinit/xinitrc.d ] ; then
+ for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
+ [ -x "$f" ] && . "$f"
+ done
+ unset f
+fi
+
+exec i3