slackbuilds_ponce/desktop/wmfs/xinitrc.wmfs
Benjamin Trigona-Harany 5f21d4dff2 desktop/wmfs: Added (dynamic tiling window manager)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2011-05-15 22:05:37 -05:00

20 lines
533 B
Bash

#!/bin/sh
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
# Start wmfs
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
exec ck-launch-session wmfs
else
exec wmfs
fi