Quiero que mi Mac emita un sonido cuando se desconecte el cargador de corriente; similar (o diferente) al que hace cuando está conectado.
He intentado este puesto pero no funcionó. Utilicé este de @trane-francks de stackexchange el problema es que no sé cómo hacer que deje de alterarse si está en modo batería (a menos que haga launchctl unload /Users/max/Library/LaunchAgents/batt.plist
en la Terminal).
Este es el batt.sh en ~/Library/scripts
#!/bin/bash
while true; do
if $(pmset -g batt | head -n 1 | grep -q "Battery"); then
afplay /System/Library/Sounds/Funk.aiff;
sleep 30;
fi
sleep 0.1;
done
Este es el archivo .plist en ~/Library/LaunchAgents
<?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>Label</key>
<string>batt</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>/Users/max/Library/Scripts/batt.sh</string>
</array>
<key>StartInterval</key>
<integer>1</integer>
</dict>
</plist>