X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=x%2F.local%2Fbin%2Fbar;h=bc01c546f1072f196d820771e4f9472c375ca8b2;hb=51e5e39bbd52f8ee4fece9e665b556429eb4d0ef;hp=8d8d0531d527b7d91d93e4a050b2ca14d80570b5;hpb=d60d891ca1f372ad7c586aaa7399ea1c7be08f11;p=dotfiles.git diff --git a/x/.local/bin/bar b/x/.local/bin/bar index 8d8d053..bc01c54 100755 --- a/x/.local/bin/bar +++ b/x/.local/bin/bar @@ -1,4 +1,23 @@ #!/bin/sh -echo \ - "$(date +"%Y-%m-%d %H:%M:%S")"\ - " $(df -h | grep '/$' | awk '{print $4"/"$2}')" +if stat -t /sys/class/power_supply/BAT*/uevent >/dev/null 2>&1; then + for f in /sys/class/power_supply/BAT*/uevent; do + eval $(grep -v " " "$f") + bat="$bat⚡$((POWER_SUPPLY_CHARGE_NOW*100/POWER_SUPPLY_CHARGE_FULL))% ($POWER_SUPPLY_STATUS) | " + done +fi + +for int in $(ip link show | grep -Po '(?<=.: )[A-Za-z0-9]+(?=:)'); do + if [ $(ip addr show dev $int | grep -Po "(?<=link/)\S+ ") = "ether" ]; then + net="$net$int: " + if /sbin/iwconfig $int >/dev/null 2>&1; then + net="$net$(/sbin/iwconfig $int | grep -Po '(?<=ESSID:").*(?=")') " + fi + net="$net($(ip addr show dev $int | grep -Po "(?<=inet )[0-9.]+")) | " + fi +done + +snd="♪ $(pactl list sinks | grep -Po "(?<=Volume: front)[^%]*" | grep -o "[0-9]\?[0-9][0-9]$" | head -n 1) | " +dsk="Dsk: $(df -h | grep '/$' | awk '{print $4"/"$2}') | " +date="$(date +"%Y-%m-%d %H:%M") " + +echo "$net$snd$bat$dsk$date"