wok-6.x annotate matchbox-common/stuff/matchbox-session-2 @ rev 21586
updated nspr and nspr-dev (4.10.8 -> 4.21)
author | Hans-G?nter Theisgen |
---|---|
date | Mon May 20 13:58:55 2019 +0100 (2019-05-20) |
parents | |
children |
rev | line source |
---|---|
pankso@10838 | 1 #!/bin/sh |
pankso@10838 | 2 # |
pankso@10838 | 3 # Very simple session manager for Matchbox v2 on SliTaz. |
pankso@10838 | 4 # |
pankso@10838 | 5 |
pankso@10838 | 6 if [ -e $HOME/.matchbox/session ]; then |
pankso@10838 | 7 exec $HOME/.matchbox/session |
pankso@10838 | 8 fi |
pankso@10838 | 9 |
pankso@10838 | 10 if [ -e /etc/matchbox/session ]; then |
pankso@10838 | 11 exec /etc/matchbox/session |
pankso@10838 | 12 fi |
pankso@10838 | 13 |
pankso@10838 | 14 # Default files to run if matchbox/session dont exist. |
pankso@10838 | 15 |
pankso@10838 | 16 matchbox-desktop & |
pankso@10838 | 17 matchbox-panel \ |
pankso@10838 | 18 --geometry=800x24+0-0 \ |
pankso@10838 | 19 --start-applets=clock,brightness & |
pankso@10838 | 20 exec matchbox-window-manager $@ |