all repos — dotfiles @ 523a4ffc8d05c4866109788bc9059bb886e73166

my *nix dotfiles

bin/bat.sh (view raw)

 1#!/usr/bin/env bash
 2
 3fg="$(xres color15)"
 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