all repos — dotfiles @ ea74f33c67f5c21982cf83749081997fde09448c

my *nix dotfiles

bin/bat.sh (view raw)

 1#!/usr/bin/env bash
 2
 3fg="$(xres color0)"
 4light="$(xres color8)"
 5
 6cap=$(cat /sys/class/power_supply/BAT0/capacity)
 7status=$(cat /sys/class/power_supply/BAT0/status)
 8
 9if [[ "$status" = "Charging" ]]
10then
11	echo -ne "%{F$light}+bat %{F$fg}$cap%"
12else
13	echo -ne "%{F$light}bat %{F$fg}$cap%"
14fi