Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
fb2d6eb5
Commit
fb2d6eb5
authored
Mar 17, 2014
by
Reed Riley
Browse files
Fixed errors if acpitool isn't installed on linux
parent
ca900216
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/battery/battery.plugin.zsh
View file @
fb2d6eb5
...
@@ -21,7 +21,7 @@ if [[ $(uname) == "Darwin" ]] ; then
...
@@ -21,7 +21,7 @@ if [[ $(uname) == "Darwin" ]] ; then
function
plugged_in
()
{
function
plugged_in
()
{
[
$(
ioreg
-rc
AppleSmartBattery |
grep
-c
'^.*"ExternalConnected"\ =\ Yes'
)
-eq
1
]
[
$(
ioreg
-rc
AppleSmartBattery |
grep
-c
'^.*"ExternalConnected"\ =\ Yes'
)
-eq
1
]
}
}
function
battery_pct_remaining
()
{
function
battery_pct_remaining
()
{
if
plugged_in
;
then
if
plugged_in
;
then
echo
"External Power"
echo
"External Power"
...
@@ -31,7 +31,7 @@ if [[ $(uname) == "Darwin" ]] ; then
...
@@ -31,7 +31,7 @@ if [[ $(uname) == "Darwin" ]] ; then
}
}
function
battery_time_remaining
()
{
function
battery_time_remaining
()
{
local
smart_battery_status
=
"
$(
ioreg
-rc
"AppleSmartBattery"
)
"
local
smart_battery_status
=
"
$(
ioreg
-rc
"AppleSmartBattery"
)
"
if
[[
$(
echo
$smart_battery_status
|
grep
-c
'^.*"ExternalConnected"\ =\ No'
)
-eq
1
]]
;
then
if
[[
$(
echo
$smart_battery_status
|
grep
-c
'^.*"ExternalConnected"\ =\ No'
)
-eq
1
]]
;
then
timeremaining
=
$(
echo
$smart_battery_status
|
grep
'^.*"AvgTimeToEmpty"\ =\ '
|
sed
-e
's/^.*"AvgTimeToEmpty"\ =\ //'
)
timeremaining
=
$(
echo
$smart_battery_status
|
grep
'^.*"AvgTimeToEmpty"\ =\ '
|
sed
-e
's/^.*"AvgTimeToEmpty"\ =\ //'
)
if
[
$timeremaining
-gt
720
]
;
then
if
[
$timeremaining
-gt
720
]
;
then
...
@@ -59,9 +59,9 @@ if [[ $(uname) == "Darwin" ]] ; then
...
@@ -59,9 +59,9 @@ if [[ $(uname) == "Darwin" ]] ; then
echo
"∞"
echo
"∞"
fi
fi
}
}
function
battery_is_charging
()
{
function
battery_is_charging
()
{
[[
$(
ioreg
-rc
"AppleSmartBattery"
|
grep
'^.*"IsCharging"\ =\ '
|
sed
-e
's/^.*"IsCharging"\ =\ //'
)
==
"Yes"
]]
[[
$(
ioreg
-rc
"AppleSmartBattery"
|
grep
'^.*"IsCharging"\ =\ '
|
sed
-e
's/^.*"IsCharging"\ =\ //'
)
==
"Yes"
]]
}
}
elif
[[
$(
uname
)
==
"Linux"
]]
;
then
elif
[[
$(
uname
)
==
"Linux"
]]
;
then
...
@@ -71,7 +71,9 @@ elif [[ $(uname) == "Linux" ]] ; then
...
@@ -71,7 +71,9 @@ elif [[ $(uname) == "Linux" ]] ; then
}
}
function
battery_pct
()
{
function
battery_pct
()
{
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
if
((
$+
commands[acpi]
))
;
then
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
fi
}
}
function
battery_pct_remaining
()
{
function
battery_pct_remaining
()
{
...
@@ -103,7 +105,7 @@ elif [[ $(uname) == "Linux" ]] ; then
...
@@ -103,7 +105,7 @@ elif [[ $(uname) == "Linux" ]] ; then
echo
"∞"
echo
"∞"
fi
fi
}
}
else
else
# Empty functions so we don't cause errors in prompts
# Empty functions so we don't cause errors in prompts
function
battery_pct_remaining
()
{
function
battery_pct_remaining
()
{
...
@@ -136,7 +138,7 @@ function battery_level_gauge() {
...
@@ -136,7 +138,7 @@ function battery_level_gauge() {
if
[[
$battery_remaining_percentage
=
~
[
0-9]+
]]
;
then
if
[[
$battery_remaining_percentage
=
~
[
0-9]+
]]
;
then
local
filled
=
$((
((
$battery_remaining_percentage
+
$gauge_slots
-
1
)
/
$gauge_slots
))
)
;
local
filled
=
$((
((
$battery_remaining_percentage
+
$gauge_slots
-
1
)
/
$gauge_slots
))
)
;
local
empty
=
$((
$gauge_slots
-
$filled
))
;
local
empty
=
$((
$gauge_slots
-
$filled
))
;
if
[[
$filled
-gt
$green_threshold
]]
;
then
local
gauge_color
=
$color_green
;
if
[[
$filled
-gt
$green_threshold
]]
;
then
local
gauge_color
=
$color_green
;
elif
[[
$filled
-gt
$yellow_threshold
]]
;
then
local
gauge_color
=
$color_yellow
;
elif
[[
$filled
-gt
$yellow_threshold
]]
;
then
local
gauge_color
=
$color_yellow
;
else
local
gauge_color
=
$color_red
;
else
local
gauge_color
=
$color_red
;
...
@@ -144,10 +146,9 @@ function battery_level_gauge() {
...
@@ -144,10 +146,9 @@ function battery_level_gauge() {
else
else
local
filled
=
$gauge_slots
;
local
filled
=
$gauge_slots
;
local
empty
=
0
;
local
empty
=
0
;
filled_symbol
=
${
BATTERY_UNKNOWN_SYMBOL
:-
'.'
}
;
filled_symbol
=
${
BATTERY_UNKNOWN_SYMBOL
:-
'.'
}
;
fi
fi
local
charging
=
' '
&&
battery_is_charging
&&
charging
=
$charging_symbol
;
local
charging
=
' '
&&
battery_is_charging
&&
charging
=
$charging_symbol
;
printf
${
charging_color
//\%/\%\%
}
$charging
${
color_reset
//\%/\%\%
}${
battery_prefix
//\%/\%\%
}${
gauge_color
//\%/\%\%
}
printf
${
charging_color
//\%/\%\%
}
$charging
${
color_reset
//\%/\%\%
}${
battery_prefix
//\%/\%\%
}${
gauge_color
//\%/\%\%
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment