Created
July 5, 2014 22:29
-
-
Save DinkDonk/7ed3dd7be62d7410cf3a to your computer and use it in GitHub Desktop.
~/.xinitrc script to load i3 window manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# ~/.xinitrc | |
# | |
# Executed by startx (run your window manager from here) | |
if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
for f in /etc/X11/xinit/xinitrc.d/*; do | |
[ -x "$f" ] && . "$f" | |
done | |
unset f | |
fi | |
exec i3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment