summarylogtreecommitdiffstats
path: root/otd
blob: f35332e14f37ecb176dd9d9917761e05d3cb8042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
cd /usr/share/OpenTabletDriver
if [ $# -eq 0 ]
then
    if [[ ! -v DISPLAY ]] && [[ ! -v WAYLAND_DISPLAY ]]
    then
        echo "DISPLAY and/or WAYLAND_DISPLAY is not set"
        exit 64
    fi
    ./OpenTabletDriver.Daemon
else
    ./OpenTabletDriver.Console "$@"
fi