Files
valere.dev/home/applications/android-wifi/android-wifi.sh
2025-11-30 09:36:09 +01:00

11 lines
188 B
Bash

#!/bin/sh
if ! scrcpy; then
adb tcpip 5555 >/dev/null 2>&1 || true
ip=$(ip neighbor | grep -i "0e:52:03:1e:89:9a" | awk '{print $1}')
adb connect "${ip}:5555"
scrcpy
fi