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
564a708d
"plugins/vscode:/vscode.git/clone" did not exist on "451fb257032a37a7d9cae4631c03f65fd3aa7f1c"
Commit
564a708d
authored
Mar 02, 2014
by
Thiago Perrotta
Browse files
added the linux implementation to the battery plugin
parent
6b3c9537
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/battery/battery.plugin.zsh
View file @
564a708d
...
@@ -58,9 +58,19 @@ if [[ $(uname) == "Darwin" ]] ; then
...
@@ -58,9 +58,19 @@ if [[ $(uname) == "Darwin" ]] ; then
elif
[[
$(
uname
)
==
"Linux"
]]
;
then
elif
[[
$(
uname
)
==
"Linux"
]]
;
then
function
battery_is_charging
()
{
!
[[
$(
acpi 2&>/dev/null |
grep
-c
'^Battery.*Discharging'
)
-gt
0
]]
}
function
battery_pct
()
{
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
}
function
battery_pct_remaining
()
{
function
battery_pct_remaining
()
{
if
[[
$(
acpi 2&>/dev/null |
grep
-c
'^Battery.*Discharging'
)
-gt
0
]]
;
then
if
[
!
$(
battery_is_charging
)
]
;
then
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
battery_pct
else
echo
"External Power"
fi
fi
}
}
...
@@ -86,15 +96,6 @@ elif [[ $(uname) == "Linux" ]] ; then
...
@@ -86,15 +96,6 @@ elif [[ $(uname) == "Linux" ]] ; then
fi
fi
}
}
function
battery_pct
()
{
# todo for on linux
}
function
battery_is_charging
()
{
# todo on linux
false
}
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
()
{
...
...
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