summaryrefslogtreecommitdiffstats
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, 19 insertions, 0 deletions
diff --git a/system/plan9port/xinitrc.rio b/system/plan9port/xinitrc.rio
new file mode 100644
index 0000000000..e4dfba95a3
--- /dev/null
+++ b/system/plan9port/xinitrc.rio
@@ -0,0 +1,19 @@
+#!/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