diff options
Diffstat (limited to 'recipes/ti/matrix-gui/init')
-rwxr-xr-x | recipes/ti/matrix-gui/init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/ti/matrix-gui/init b/recipes/ti/matrix-gui/init index fc2aacf5e8..9cd7412e28 100755 --- a/recipes/ti/matrix-gui/init +++ b/recipes/ti/matrix-gui/init @@ -1,6 +1,7 @@ #! /bin/sh matrixgui="/usr/bin/matrix_gui" +GUI_OPTS="-qws -display transformed:Rot90 /usr/share/matrix/html/menu_main.html" test -x "$matrixgui" || exit 0 @@ -16,7 +17,7 @@ case "$1" in if [ ! -f /etc/pointercal ] ; then ts_calibrate fi - start-stop-daemon --start --quiet --background --exec $matrixgui + start-stop-daemon --start --quiet --background --pidfile /var/run/matrix-gui.pid --exec $matrixgui -- $GUI_OPTS echo "." ;; stop) |