From 62ada90286cfea918514c795495b883ead8f1fff Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 13 Aug 2018 23:07:49 +0000 Subject: [PATCH] remove battery status --- home/.zshrc.local | 36 ------------------------------------ home/.zshrc.pre | 2 -- 2 files changed, 38 deletions(-) diff --git a/home/.zshrc.local b/home/.zshrc.local index 0008eae..a965a83 100644 --- a/home/.zshrc.local +++ b/home/.zshrc.local @@ -25,42 +25,6 @@ PATH="$PATH:$HOME/bin" ## Battery percentage alias batt="upower -i /org/freedesktop/UPower/devices/battery_BAT0|grep percentage|awk '{print $2}'" -## Battery status (overwrites upstream function!) - -function batterylinux () { - GRML_BATTERY_LEVEL='' - local batteries bat capacity - batteries=( /sys/class/power_supply/BAT*(N) ) - if (( $#batteries > 0 )) ; then - for bat in $batteries ; do - if [[ -e $bat/capacity ]]; then - capacity=$(< $bat/capacity) - else - typeset -F energy_full=$(< $bat/energy_full) - typeset -F energy_now=$(< $bat/energy_now) - typeset -i capacity=$(( 100 * $energy_now / $energy_full)) - fi - case $(< $bat/status) in - Charging) - GRML_BATTERY_LEVEL+="%F{blue}^%f" - ;; - Discharging) - if (( capacity < 20 )) ; then - GRML_BATTERY_LEVEL+="%F{red}!v%f" - else - GRML_BATTERY_LEVEL+="%F{yellow}v%f" - fi - ;; - *) # Full, Unknown - GRML_BATTERY_LEVEL+="%F{green}=%f" - ;; - esac - GRML_BATTERY_LEVEL+="${capacity}%%" - done - fi -} - - ## Upload to transfer.sh transfer() { if [ $# -eq 0 ];then diff --git a/home/.zshrc.pre b/home/.zshrc.pre index 6c53601..7f75298 100644 --- a/home/.zshrc.pre +++ b/home/.zshrc.pre @@ -2,5 +2,3 @@ source "$HOME/.homesick/repos/homeshick/homeshick.sh" fpath=($HOME/.homesick/repos/homeshick/completions $fpath) - -GRML_DISPLAY_BATTERY=1