Dotfiles for different machines on different branches.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
442 B

  1. #!/usr/bin/env sh
  2. capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
  3. time=$(acpi | awk '{ print $5 }')
  4. status=$(cat /sys/class/power_supply/"$1"/status)
  5. [ -z $warn ] && warn=" "
  6. [ "$status" = "Charging" ] && color="#ffffff"
  7. printf "%s%s" "$(echo "$status" | sed -e "s/,//;s/Discharging//;s/Not Charging//;s/Charging//;s/Unknown//;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/' ) "