blob: 24f80078f92072b68f902dc9f10880f7f403a07f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# host session applications
xoo -xd :1 -xn /usr/bin/Xephyr --device gpephone --title GPEPhone &
# start nested session
export DISPLAY=:1
#. /etc/X11/Xsession
if [ -x /etc/X11/phonesession ]; then
. /etc/X11/phonesession
fi
DISPLAY=:0 exec matchbox-window-manager -use_titlebar yes $@
|