summarylogtreecommitdiffstats
path: root/otd
blob: 1755cfe6eb75445b6d13f080c9f6f7a49f932f50 (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
    dotnet ./OpenTabletDriver.Daemon.dll
else
    dotnet ./OpenTabletDriver.Console.dll "$@"
fi