Compare commits
1 Commits
1b2a277a7a
...
0efee5882a
Author | SHA1 | Date | |
---|---|---|---|
0efee5882a |
@ -12,11 +12,17 @@ fi
|
|||||||
trap '[ -f $cache_file ] && rm $cache_file; exit' INT
|
trap '[ -f $cache_file ] && rm $cache_file; exit' INT
|
||||||
trap '[ -f $cache_file ] && rm $cache_file; exit' TERM
|
trap '[ -f $cache_file ] && rm $cache_file; exit' TERM
|
||||||
|
|
||||||
|
# Check if a battery is installed.
|
||||||
|
if ioreg -w0 -l|grep BatteryInstalled &> /dev/null; then
|
||||||
|
has_battery=true
|
||||||
|
else
|
||||||
|
has_battery=false
|
||||||
|
fi
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
# Get the current CPU temperature.
|
# Get the current CPU temperature.
|
||||||
cpu_temp="`/usr/local/bin/osx-cpu-temp`"
|
cpu_temp="`/usr/local/bin/osx-cpu-temp`"
|
||||||
# Check if a battery is installed.
|
if $has_battery; then
|
||||||
if ioreg -w0 -l|grep BatteryInstalled &> /dev/null; then
|
|
||||||
# Parse the current battery charge percentage.
|
# Parse the current battery charge percentage.
|
||||||
battery=" `pmset -g batt | grep --color=never -Eo '\d+%'` ↯"
|
battery=" `pmset -g batt | grep --color=never -Eo '\d+%'` ↯"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user