diff options
author | Amin Bandali <bandali@gnu.org> | 2019-04-12 23:39:24 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-04-13 00:40:17 -0400 |
commit | a92a01fe479e3b069e23297cb3b541eb273deb58 (patch) | |
tree | 092762963a81ac538b16deda8e2e1c7ea3fc1e2b /.local/bin/battery-percentage-time | |
parent | ec80f07afe6f0985de1aff4d321292c93b3cb4ef (diff) | |
download | configs-a92a01fe479e3b069e23297cb3b541eb273deb58.tar.gz configs-a92a01fe479e3b069e23297cb3b541eb273deb58.tar.xz configs-a92a01fe479e3b069e23297cb3b541eb273deb58.zip |
scripts: pull current scripts out of rc.org & clean up
battery-percentage-time: pull out of rc.org scripts
my-i3status: pull out of rc.org
rofi-light: pull out of rc.org
rofi-remmina: pull out of rc.org
s: pull out of rc.org
sway-ws-util: pull out of rc.org
toggle-presentation-mode: pull out of rc.org
toggle-tablet: pull out of rc.org
volume-info: pull out of rc.org
zathura-sync: pull out of rc.org
remove Scripts
Diffstat (limited to '.local/bin/battery-percentage-time')
-rwxr-xr-x | .local/bin/battery-percentage-time | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.local/bin/battery-percentage-time b/.local/bin/battery-percentage-time new file mode 100755 index 0000000..b0122a8 --- /dev/null +++ b/.local/bin/battery-percentage-time @@ -0,0 +1,22 @@ +#!/bin/sh + +dbus_send() { + label=$1 + dbus-send --print-reply=literal --system \ + --dest=org.freedesktop.UPower \ + /org/freedesktop/UPower/devices/battery_BAT0 \ + org.freedesktop.DBus.Properties.Get \ + string:org.freedesktop.UPower.Device \ + string:"${label}" | awk '{print $3}' +} + +perc=$(dbus_send 'Percentage') +state=$(dbus_send 'State') + +if [ "$state" -eq 2 ]; then # Discharging + secs=$(dbus_send 'TimeToEmpty') +elif [ "$state" -eq 1 ]; then # Charging + secs=$(dbus_send 'TimeToFull') +fi + +printf '%s%%%%%2dh%02dm \n' "$perc" $((secs / 3600)) $((secs % 3600 / 60)) |