14 lines
184 B
Bash
Executable File
14 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while true; do
|
|
|
|
if [ -L /dev/android_adb ]
|
|
then
|
|
# scrcpy --turn-screen-off --stay-awake & sndcpy
|
|
scrcpy --turn-screen-off --stay-awake
|
|
else
|
|
adb wait-for-device
|
|
fi
|
|
|
|
done
|