dotfiles/scripts/scrcpy-autostart
2023-08-07 11:05:54 +05:00

14 lines
195 B
Bash
Executable File

#!/bin/bash
while true; do
if [ -L /dev/android_adb ]
then
# scrcpy --no-audio --turn-screen-off --stay-awake & sndcpy
scrcpy --turn-screen-off --stay-awake
else
adb wait-for-device
fi
done