Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- case "$( adb devices -l | awk 'BEGIN{LICZ=0}; NR > 1 && ! /unauthorized/ && NF{LICZ++};END{print LICZ}' )" in
- "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ń. " ;;
- "1") scrcpy --turn-screen-off & ;;
- *) 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
- scrcpy --serial="$i" --turn-screen-off &
- done
- ;;
- esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement