summaryrefslogtreecommitdiff
path: root/system/plan9port/xinitrc.rio
diff options
context:
space:
mode:
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