2011-07-07 02:52:38 +02:00
|
|
|
#!/bin/bash
|
|
|
|
trap "" TERM
|
2010-06-10 22:35:55 +02:00
|
|
|
context=`id -Z | secon -t -l -P`
|
|
|
|
export TITLE="Sandbox $context -- `grep ^#TITLE: ~/.sandboxrc | /usr/bin/cut -b8-80`"
|
2011-06-07 14:34:04 +02:00
|
|
|
[ -z $1 ] && export SCREENSIZE="1000x700" || export SCREENSIZE="$1"
|
|
|
|
[ -z $2 ] && export DPI="96" || export DPI="$2"
|
2010-06-10 22:35:55 +02:00
|
|
|
trap "exit 0" HUP
|
|
|
|
|
2013-10-09 23:26:41 +02:00
|
|
|
mkdir -p ~/.config/openbox
|
|
|
|
cat > ~/.config/openbox/rc.xml << EOF
|
|
|
|
<openbox_config xmlns="http://openbox.org/3.4/rc"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
|
<applications>
|
|
|
|
<application class="*">
|
|
|
|
<decor>no</decor>
|
|
|
|
<desktop>all</desktop>
|
|
|
|
<maximized>yes</maximized>
|
|
|
|
</application>
|
|
|
|
</applications>
|
|
|
|
</openbox_config>
|
|
|
|
EOF
|
|
|
|
|
2013-10-09 23:28:04 +02:00
|
|
|
(/usr/bin/Xephyr -resizeable -title "$TITLE" -terminate -screen $SCREENSIZE -dpi $DPI -nolisten tcp -displayfd 5 5>&1 2>/dev/null) | while read D; do
|
2010-06-10 22:35:55 +02:00
|
|
|
export DISPLAY=:$D
|
2011-08-10 23:22:41 +02:00
|
|
|
cat > ~/seremote << __EOF
|
|
|
|
#!/bin/sh
|
|
|
|
DISPLAY=$DISPLAY "\$@"
|
|
|
|
__EOF
|
|
|
|
chmod +x ~/seremote
|
|
|
|
/usr/share/sandbox/start $HOME/.sandboxrc
|
2010-06-10 22:35:55 +02:00
|
|
|
export EXITCODE=$?
|
2011-07-07 02:52:38 +02:00
|
|
|
kill -TERM 0
|
2010-06-10 22:35:55 +02:00
|
|
|
break
|
|
|
|
done
|
|
|
|
exit 0
|