diff options
author | Daniel de Kok <danieldk@pobox.com> | 2010-05-11 20:00:08 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-11 20:00:08 +0200 |
commit | b5d61a7e6f2ddcc3743f29d3cbca1d6177065049 (patch) | |
tree | d152e07be62052372e69434173ec7e8c779e53cc /desktop/matchbox-window-manager/xinitrc.matchbox | |
parent | b31811e61d282de0c2d96f1e7bf22dcfb680d0b6 (diff) | |
download | slackbuilds-b5d61a7e6f2ddcc3743f29d3cbca1d6177065049.tar.gz |
desktop/matchbox-window-manager: Added to 12.0 repository
Diffstat (limited to 'desktop/matchbox-window-manager/xinitrc.matchbox')
-rw-r--r-- | desktop/matchbox-window-manager/xinitrc.matchbox | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/desktop/matchbox-window-manager/xinitrc.matchbox b/desktop/matchbox-window-manager/xinitrc.matchbox new file mode 100644 index 0000000000..29f84e56da --- /dev/null +++ b/desktop/matchbox-window-manager/xinitrc.matchbox @@ -0,0 +1,33 @@ +#!/bin/sh +# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $ + +userresources=$HOME/.Xresources +usermodmap=$HOME/.Xmodmap +sysresources=/usr/X11R6/lib/X11/xinit/.Xresources +sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap + +# merge in defaults and keymaps + +if [ -f $sysresources ]; then + /usr/X11R6/bin/xrdb -merge $sysresources +fi + +if [ -f $sysmodmap ]; then + /usr/X11R6/bin/xmodmap $sysmodmap +fi + +if [ -f $userresources ]; then + /usr/X11R6/bin/xrdb -merge $userresources +fi + +if [ -f $usermodmap ]; then + /usr/X11R6/bin/xmodmap $usermodmap +fi + +# start Matchbox +if [ -x /usr/bin/matchbox-session ]; then + matchbox-session +else + xterm & + matchbox-window-manager +fi |