Advertisement
orborbson

scrcpy

Apr 21st, 2024 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. case "$( adb devices -l | awk 'BEGIN{LICZ=0}; NR > 1 && ! /unauthorized/ && NF{LICZ++};END{print LICZ}' )" in
  4. "0") yad --image=emblem-warning --on-top --text-align=center --center --title="Błąd" --button="OK"\!gtk-ok --text="\nBrak podłączonych lub sparowanych urządzeń. " ;;
  5. "1") scrcpy --turn-screen-off & ;;
  6. *) for i in $(yad --window-icon=dialog-information --separator="" --on-top --geometry 300x300 --center --title="Urządzenia" --list --checklist --column="wybierz" --column="serial" --column="model" --print-column="2" --hide-column="2" $(adb devices -l | awk 'NR > 1 && ! /unauthorized/ && NF{split($0, arr); printf("FALSE %s %s\n", arr[1], substr(arr[5], 7))}')); do
  7.     scrcpy --serial="$i" --turn-screen-off &
  8. done
  9. ;;
  10. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement