Merge branch 'master' of github.com:dopefishh/dotfiles
[dotfiles.git] / x / .local / bin / bar
index ddff365..f210c49 100755 (executable)
@@ -1,3 +1,21 @@
 #!/bin/sh
-echo -n \
-       $(date +"%Y-%m-%d %H:%M:%S")
+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
+
+for int in $(ip link show | grep -Po '(?<=.: )\S+(?=:)'); 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"