[zshrc] switch from spaces to tabs
This commit is contained in:
parent
c9ae405e10
commit
749a5e97b3
|
@ -28,10 +28,10 @@ alias batt="upower -i /org/freedesktop/UPower/devices/battery_BAT0|grep percenta
|
||||||
## Battery status (overwrites upstream function!)
|
## Battery status (overwrites upstream function!)
|
||||||
|
|
||||||
function batterylinux () {
|
function batterylinux () {
|
||||||
GRML_BATTERY_LEVEL=''
|
GRML_BATTERY_LEVEL=''
|
||||||
local batteries bat capacity
|
local batteries bat capacity
|
||||||
batteries=( /sys/class/power_supply/BAT*(N) )
|
batteries=( /sys/class/power_supply/BAT*(N) )
|
||||||
if (( $#batteries > 0 )) ; then
|
if (( $#batteries > 0 )) ; then
|
||||||
for bat in $batteries ; do
|
for bat in $batteries ; do
|
||||||
if [[ -e $bat/capacity ]]; then
|
if [[ -e $bat/capacity ]]; then
|
||||||
capacity=$(< $bat/capacity)
|
capacity=$(< $bat/capacity)
|
||||||
|
@ -57,7 +57,7 @@ if (( $#batteries > 0 )) ; then
|
||||||
esac
|
esac
|
||||||
GRML_BATTERY_LEVEL+="${capacity}%%"
|
GRML_BATTERY_LEVEL+="${capacity}%%"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue