Skip to content

Instantly share code, notes, and snippets.

@DinkDonk
Created July 5, 2014 22:29
Show Gist options
  • Save DinkDonk/7ed3dd7be62d7410cf3a to your computer and use it in GitHub Desktop.
Save DinkDonk/7ed3dd7be62d7410cf3a to your computer and use it in GitHub Desktop.
~/.xinitrc script to load i3 window manager
#!/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