dotfiles/scripts/scrcpy-autostart

13 lines
144 B
Plaintext
Raw Normal View History

2023-03-03 21:29:57 +05:00
#!/bin/bash
while true; do
if [ -L /dev/android_adb ]
then
scrcpy --turn-screen-off --stay-awake & sndcpy
else
adb wait-for-device
fi
done