A playground for testing different capabilities of scrcpy
By default scrcpy supports launching multiple instances of scrcpy window by specifiying the device serial from adb devices
command. However, it lacks the convenience of a simple command, which it requires you to check for the devices serial you want to mirror and enter the command one-by-one. Therefore, I've written a simple shell script to simplify the process. Check out the code here:
while read sn device; do
scrcpy -s $sn &
done < <(adb devices | sed '1d')
Check out the file here
This project is licensed under the MIT license. See the LICENSE file for more info.