Skip to content

Instantly share code, notes, and snippets.

@miblodelcarpio
Created November 19, 2017 19:08
Show Gist options
  • Save miblodelcarpio/1ed1c12b6009c1f63dd79b28bbc28cf9 to your computer and use it in GitHub Desktop.
Save miblodelcarpio/1ed1c12b6009c1f63dd79b28bbc28cf9 to your computer and use it in GitHub Desktop.
#!/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
#[[ -f $HOME/.Xresources ]] && xrdb -merge $HOME/.Xresources
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
[ -f /etc/profile ] && . /etc/profile
#if [ -s ~/.Xmodmap ]; then
# xmodmap ~/.Xmodmap
#fi
exec startfluxbox
#exec i3
#exec awesome
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment