Files
guru/x11-drivers/OpenTabletDriver-bin/files/otd
Ethan Nijmeh 46c2c356c2 x11-drivers/OpenTabletDriver-bin: fixed formatting
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ethan Nijmeh <ethannij@gmail.com>
2021-05-01 23:07:01 -07:00

14 lines
338 B
Bash

#! /usr/bin/env bash
cd /usr/share/opentabletdriver-bin
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 -c ./Configurations
else
dotnet ./OpenTabletDriver.Console.dll "$@"
fi