From 371a877069a62cab6ea2aabab8a22d3fea0a2b3a Mon Sep 17 00:00:00 2001 From: core Date: Tue, 11 May 2010 20:02:05 +0200 Subject: system/plan9port: Added to 12.0 repository --- system/plan9port/xinitrc.rio | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 system/plan9port/xinitrc.rio (limited to 'system/plan9port/xinitrc.rio') diff --git a/system/plan9port/xinitrc.rio b/system/plan9port/xinitrc.rio new file mode 100644 index 0000000000..20cb1751fc --- /dev/null +++ b/system/plan9port/xinitrc.rio @@ -0,0 +1,28 @@ +#!/bin/sh +# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $ + +userresources=$HOME/.Xresources +usermodmap=$HOME/.Xmodmap +sysresources=/usr/lib/X11/xinit/.Xresources +sysmodmap=/usr/lib/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 the window manager: +exec rio -- cgit v1.2.3