dotfiles/scripts/scrcpy-autostart

14 lines
184 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
2023-03-17 16:53:49 +05:00
# scrcpy --turn-screen-off --stay-awake & sndcpy
scrcpy --turn-screen-off --stay-awake
2023-03-03 21:29:57 +05:00
else
adb wait-for-device
fi
done