Browse Source

Merge pull request #1457 from NeuralSandwich/master

Battery plugin: Fixed Kernel type detection
Robby Russell 12 years ago
parent
commit
f8343b0fd9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/battery/battery.plugin.zsh

+ 2 - 2
plugins/battery/battery.plugin.zsh

@@ -8,7 +8,7 @@
 # Modified to add support for Apple Mac   #
 # Modified to add support for Apple Mac   #
 ###########################################
 ###########################################
 
 
-if [[ $(uname) -eq "Darwin" ]] ; then
+if [[ $(uname) == "Darwin" ]] ; then
 
 
   function battery_pct_remaining() {
   function battery_pct_remaining() {
     if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then
     if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then
@@ -46,7 +46,7 @@ if [[ $(uname) -eq "Darwin" ]] ; then
     fi
     fi
   }
   }
 
 
-elif [[ $(uname) -eq "Linux"  ]] ; then
+elif [[ $(uname) == "Linux"  ]] ; then
 
 
   if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then
   if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then
     function battery_pct_remaining() { echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" }
     function battery_pct_remaining() { echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" }