dotfiles/scripts/scrcpy-autostart

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