mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
22bb08c499
This commit includes a few other minor (mostly aesthetic) tweaks to the xinitrc files. Also note that I did not use ck-launch-session in the kde- and gnome-specific xinitrc files; that's because the kde/gnome session manager should have already taken care of the needed bits in those cases. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
22 lines
757 B
Bash
22 lines
757 B
Bash
#!/bin/sh
|
|
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $
|
|
|
|
userresources=$HOME/.Xresources
|
|
usermodmap=$HOME/.Xmodmap
|
|
sysresources=/etc/X11/xinit/.Xresources
|
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
|
|
|
# merge in defaults and keymaps
|
|
[ -f $sysresources ] && /usr/bin/xrdb -merge $sysresources
|
|
[ -f $sysmodmap ] && /usr/bin/xmodmap $sysmodmap
|
|
[ -f $userresources ] && /usr/bin/xrdb -merge $userresources
|
|
[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap
|
|
|
|
# Create default user directory & populate it if not already existent
|
|
if [ ! -d $HOME/.config/openbox ]; then
|
|
mkdir -p $HOME/.config/openbox
|
|
cat /etc/xdg/openbox/menu.xml > $HOME/.config/openbox/menu.xml
|
|
cat /etc/xdg/openbox/rc.xml > $HOME/.config/openbox/rc.xml
|
|
fi
|
|
|
|
exec openbox-gnome-session
|