CheckTrackpadBattery 是 V2EX 网友自制的一段 Magic Trackpad 电量检查脚本,可以在 Trackpad 电量低于 %20 的时候推送给用户电量低的消息,原来 macOS 系统会在 10% 之下推送电量低的消息。
根据需求设置定时任务,如 */10 * * * * bash $HOME/.scripts/CheckTrackpadBattery.sh > /dev/null 2>&1
原始脚本:
#!/bin/bash
# Create Date: 2017-05-26 17:03:49
# Last Modified: 2017-05-26 17:31:52
# Author: Anton Chen
# Email: contact@antonchen.com
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
system_profiler SPBluetoothDataType|grep -A 24 'Devices'|grep -q Trackpad
if [ $? -ne 0 ]; then
echo "Trackpad 未连接"
exit 1
fi
batteryLevel=$(system_profiler SPBluetoothDataType|grep -A 24 'Devices'|grep Battery|awk -F"[:| |%]+" '{print $4}')
if [ $batteryLevel -lt 20 ]; then
osascript -e "tell application \"System Events\" to display notification \"电量低,剩余 $batteryLevel%\" with title \"Magic Trackpad 2\" sound name \"Submarine\""
fi