0 votes

Comment vérifier l'option "arrêt automatique" sur un profil non actif ?

Je voudrais vérifier la valeur de autopoweroff y autopoweroffdelay les paramètres du profil "Alimentation par batterie" pendant l'exécution du profil "Alimentation par courant alternatif" (précisément quel que soit le profil actuellement actif).

Le site pmset -g renvoie uniquement les valeurs du profil actuel et -b (appliquer les paramètres à la batterie) ne fonctionne que pour définir les options et non pour les lire (ne peut pas être utilisé avec l'option -g ).

Existe-t-il un autre moyen/commande qui permettrait de vérifier les valeurs ?

1voto

techraf Points 3610

Selon le manuel pmset -g custom affichages " paramètres personnalisés pour toutes les sources d'alimentation ". Il semble que ces " paramètres personnalisés "sont en fait tous les paramètres tels qu'affichés par pmset -g pour le profil actuel :

# pmset -g custom
Battery Power:
 lidwake              1
 autopoweroff         0
 autopoweroffdelay    14400
 standbydelay         10800
 standby              1
 ttyskeepawake        1
 hibernatemode        3
 powernap             0
 gpuswitch            2
 hibernatefile        /var/vm/sleepimage
 displaysleep         2
 sleep                1
 acwake               0
 halfdim              1
 lessbright           1
 disksleep            10
AC Power:
 lidwake              1
 autopoweroff         0
 autopoweroffdelay    14400
 standbydelay         10800
 standby              1
 ttyskeepawake        1
 hibernatemode        3
 powernap             1
 gpuswitch            2
 hibernatefile        /var/vm/sleepimage
 womp                 0
 displaysleep         10
 networkoversleep     0
 sleep                0
 acwake               0
 halfdim              1
 disksleep            10

Alternativement, les valeurs peuvent être vérifiées en lisant directement dans le fichier /Library/Preferences/SystemConfiguration/com.apple.PowerManagement.plist

# cat /Library/Preferences/SystemConfiguration/com.apple.PowerManagement.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>ActivePowerProfiles</key>
    <dict>
        <key>AC Power</key>
        <integer>-1</integer>
        <key>Battery Power</key>
        <integer>-1</integer>
    </dict>
    <key>Custom Profile</key>
    <dict>
        <key>AC Power</key>
        <dict>
            <key>AutoPowerOff Delay</key>
            <integer>14400</integer>
            <key>AutoPowerOff Enabled</key>
            <integer>0</integer>
            <key>DarkWakeBackgroundTasks</key>
            <true/>
            <key>Disk Sleep Timer</key>
            <integer>10</integer>
            <key>Display Sleep Timer</key>
            <integer>10</integer>
            <key>Display Sleep Uses Dim</key>
            <integer>1</integer>
            <key>GPUSwitch</key>
            <integer>2</integer>
            <key>Hibernate File</key>
            <string>/var/vm/sleepimage</string>
            <key>Hibernate Mode</key>
            <integer>3</integer>
            <key>PrioritizeNetworkReachabilityOverSleep</key>
            <integer>0</integer>
            <key>Standby Delay</key>
            <integer>10800</integer>
            <key>Standby Enabled</key>
            <integer>1</integer>
            <key>System Sleep Timer</key>
            <integer>0</integer>
            <key>TTYSPreventSleep</key>
            <integer>1</integer>
            <key>Wake On AC Change</key>
            <integer>0</integer>
            <key>Wake On Clamshell Open</key>
            <integer>1</integer>
            <key>Wake On LAN</key>
            <integer>0</integer>
        </dict>
        <key>Battery Power</key>
        <dict>
            <key>AutoPowerOff Delay</key>
            <integer>14400</integer>
            <key>AutoPowerOff Enabled</key>
            <integer>0</integer>
            <key>DarkWakeBackgroundTasks</key>
            <false/>
            <key>Disk Sleep Timer</key>
            <integer>10</integer>
            <key>Display Sleep Timer</key>
            <integer>2</integer>
            <key>Display Sleep Uses Dim</key>
            <integer>1</integer>
            <key>GPUSwitch</key>
            <integer>2</integer>
            <key>Hibernate File</key>
            <string>/var/vm/sleepimage</string>
            <key>Hibernate Mode</key>
            <integer>3</integer>
            <key>ReduceBrightness</key>
            <integer>1</integer>
            <key>Standby Delay</key>
            <integer>10800</integer>
            <key>Standby Enabled</key>
            <integer>1</integer>
            <key>System Sleep Timer</key>
            <integer>1</integer>
            <key>TTYSPreventSleep</key>
            <integer>1</integer>
            <key>Wake On AC Change</key>
            <integer>0</integer>
            <key>Wake On Clamshell Open</key>
            <integer>1</integer>
        </dict>
    </dict>
    <key>SystemPowerSettings</key>
    <dict>
        <key>DestroyFVKeyOnStandby</key>
        <true/>
    </dict>
</dict>
</plist>

LesApples.com

LesApples est une communauté de Apple où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres utilisateurs d'appareils Apple, poser vos propres questions ou résoudre celles des autres.

Powered by:

X