summaryrefslogtreecommitdiffstats
path: root/system/plan9port/xinitrc.rio
diff options
context:
space:
mode:
author Robby Workman2011-03-14 23:20:52 +0100
committer Robby Workman2011-03-14 23:20:52 +0100
commitd777998487301ff1911c66e10c1b948ae0a9f84e (patch)
tree246063456e6dd708a9bb49dd16014516ef21648e /system/plan9port/xinitrc.rio
parentece7295200485bd7748880dd7aeb30e6f3f6f3cd (diff)
downloadslackbuilds-d777998487301ff1911c66e10c1b948ae0a9f84e.tar.gz
system/plan9port: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006576.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/plan9port/xinitrc.rio')
-rw-r--r--system/plan9port/xinitrc.rio19
1 files changed, 0 insertions, 19 deletions
diff --git a/system/plan9port/xinitrc.rio b/system/plan9port/xinitrc.rio
deleted file mode 100644
index e4dfba95a3..0000000000
--- a/system/plan9port/xinitrc.rio
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/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 ] && xrdb -merge $sysresources
-[ -f $sysmodmap ] && xmodmap $sysmodmap
-[ -f $userresources ] && xrdb -merge $userresources
-[ -f $usermodmap ] && xmodmap $usermodmap
-
-# Start the window manager:
-if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
- exec ck-launch-session rio
-else
- exec rio
-fi