aboutsummaryrefslogtreecommitdiff
path: root/desktop/matchbox-window-manager/xinitrc.matchbox
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/matchbox-window-manager/xinitrc.matchbox')
-rw-r--r--desktop/matchbox-window-manager/xinitrc.matchbox25
1 files changed, 0 insertions, 25 deletions
diff --git a/desktop/matchbox-window-manager/xinitrc.matchbox b/desktop/matchbox-window-manager/xinitrc.matchbox
deleted file mode 100644
index 5caddfce15a9d..0000000000000
--- a/desktop/matchbox-window-manager/xinitrc.matchbox
+++ /dev/null
@@ -1,25 +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 ] && /usr/bin/xrdb -merge $sysresources
-[ -f $sysmodmap ] && /usr/bin/xmodmap $sysmodmap
-[ -f $userresources ] && /usr/bin/xrdb -merge $userresources
-[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap
-
-# Start Matchbox
-if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
- if [ -x /usr/bin/matchbox-session ]; then
- ck-launch-session dbus-launch --exit-with-session matchbox-session
- else
- matchbox-session
- fi
-else
- xterm &
- matchbox-window-manager
-fi
-