Created
November 19, 2017 19:08
-
-
Save miblodelcarpio/1ed1c12b6009c1f63dd79b28bbc28cf9 to your computer and use it in GitHub Desktop.
This file contains 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 | |
#[[ -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