Skip to content

Instantly share code, notes, and snippets.

@nhatzHK
Created April 4, 2017 18:56
Show Gist options
  • Save nhatzHK/abcaab19ac65aea0ccff016fd030e2f2 to your computer and use it in GitHub Desktop.
Save nhatzHK/abcaab19ac65aea0ccff016fd030e2f2 to your computer and use it in GitHub Desktop.
~/.xinitrc 2017 Apr 4.
#!/bin/sh
# The \ in the name is because github is complaining about /
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
#twm &
#xclock -geometry 50x50-1+1 &
#xterm -geometry 80x50+494+51 &
#xterm -geometry 80x20+494-0 &
#xterm -geometry 80x66+0+0 -name login
exec gnome-session
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment