J'ai créé un script shell simple pour mon macOS
Nom du fichier : cell-screen.sh
#!/bin/sh
echo '`cell-screen on` to keep the screen on during usb debugging'
echo '`cell-screen off` to reset'
echo ''
echo 'your parameter - ' $1
if [[ "$1" = "on" ]]; then
~/Library/Android/sdk/platform-tools/adb shell settings put global stay_on_while_plugged_in 2
elif [[ "$1" = "off" ]]; then
~/Library/Android/sdk/platform-tools/adb shell settings put global stay_on_while_plugged_in 0
else
echo '\n[****]Bad Input.'
fi
echo '\nEnd'
Des pas :
- J'ai enregistré le script à l'emplacement d'utilisation par défaut -
/Users/[your username]
- Avec un accès exécutable au fichier -
chmod +x ~/cell-screen.sh
- Chaque fois que je commence mes tâches de développement, j'exécute simplement le script shell dans le terminal -.
~/cell-screen.sh on
- Après avoir terminé mon travail de développement, j'exécute simplement -
~/cell-screen.sh off
Pour les utilisateurs de Windows :
Changez le script shell pour l'emplacement adb - %LOCALAPPDATA%\Android\sdk\platform-tools\adb