mirror of
https://git.yoctoproject.org/matchbox-common
synced 2025-11-03 20:45:42 +08:00
git-svn-id: https://svn.o-hand.com/repos/matchbox/trunk/matchbox-common@671 b067294f-1dea-0310-9683-c47a78595994
25 lines
472 B
Bash
Executable File
25 lines
472 B
Bash
Executable File
#!/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 $@
|