summaryrefslogtreecommitdiffstats
path: root/desktop/lxqt-common/xinitrc.lxde-qt
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/lxqt-common/xinitrc.lxde-qt')
-rw-r--r--desktop/lxqt-common/xinitrc.lxde-qt21
1 files changed, 21 insertions, 0 deletions
diff --git a/desktop/lxqt-common/xinitrc.lxde-qt b/desktop/lxqt-common/xinitrc.lxde-qt
new file mode 100644
index 0000000000..230c8c1998
--- /dev/null
+++ b/desktop/lxqt-common/xinitrc.lxde-qt
@@ -0,0 +1,21 @@
+#!/bin/sh
+# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
+
+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
+ ck-launch-session dbus-launch --exit-with-session startlxde-qt
+else
+ startlxde-qt
+fi
+