aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/matchbox-sato/matchbox-sato/matchbox-session
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/matchbox-sato/matchbox-sato/matchbox-session')
-rw-r--r--recipes/matchbox-sato/matchbox-sato/matchbox-session24
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/matchbox-sato/matchbox-sato/matchbox-session b/recipes/matchbox-sato/matchbox-sato/matchbox-session
new file mode 100644
index 0000000000..65f1ce72ca
--- /dev/null
+++ b/recipes/matchbox-sato/matchbox-sato/matchbox-session
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# Very simple session manager for matchbox tools
+#
+
+# Uncomment below to enable parsing of debian menu entrys
+# export MB_USE_DEB_MENUS=1
+
+if [ -e $HOME/.matchbox/session ]
+then
+exec $HOME/.matchbox/session
+fi
+
+if [ -e /etc/matchbox/session ]
+then
+exec /etc/matchbox/session
+fi
+
+# Default files to run if $HOME/.matchbox/session or /etc/matchbox/session
+# dont exist.
+
+matchbox-desktop &
+matchbox-panel --orientation south &
+exec matchbox-window-manager $@