From 462905e0560be8426aa774b7dd0b0c4a9abb9e28 Mon Sep 17 00:00:00 2001 From: vignedev Date: Mon, 18 Jan 2021 10:58:45 +0100 Subject: [PATCH] fix: pass optional arguments to scrcpy (#3) In its current state, no arguments were passed to `scrcpy`, so arguments such as `--turn-screen-off` etc. were not working. --- AppRun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppRun b/AppRun index 8e46cae..76c9c32 100755 --- a/AppRun +++ b/AppRun @@ -8,4 +8,4 @@ export ADB="${APPDIR}/usr/bin/adb" export SCRCPY_SERVER_PATH="${APPDIR}/usr/local/share/scrcpy/scrcpy-server" export PATH="${APPDIR}/usr/bin:${PATH}" export LD_LIBRARY_PATH="${APPDIR}/usr/lib:${LD_LIBRARY_PATH}" -${APPDIR}/usr/bin/scrcpy +${APPDIR}/usr/bin/scrcpy "$@"