summaryrefslogtreecommitdiff
path: root/testcases/014-battery-capacity/i3status.conf
diff options
context:
space:
mode:
authorEmeric Planet <emeric.planet@gmail.com>2017-04-13 21:46:21 +0200
committerMichael Stapelberg <stapelberg@users.noreply.github.com>2017-04-13 21:46:21 +0200
commitc7dea747519f99584002084df3dce546f37df8b5 (patch)
tree4315dd2be5fde515a6c590c903b43efd557a1de8 /testcases/014-battery-capacity/i3status.conf
parent94651257cea4ff419f9cf2143d93193d5a5ccb96 (diff)
Add battery capacity parsing (#216)
The Linux power supply class defines three entries to provide battery status. One of them wasn't used: POWER_SUPPLY_CAPACITY. https://www.kernel.org/doc/Documentation/power/power_supply_class.txt
Diffstat (limited to 'testcases/014-battery-capacity/i3status.conf')
-rw-r--r--testcases/014-battery-capacity/i3status.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/testcases/014-battery-capacity/i3status.conf b/testcases/014-battery-capacity/i3status.conf
new file mode 100644
index 0000000..d48aa50
--- /dev/null
+++ b/testcases/014-battery-capacity/i3status.conf
@@ -0,0 +1,13 @@
+general {
+ output_format = "none"
+}
+
+order += "battery 1"
+
+battery 1 {
+ format = "Touchpad: %percentage %status %remaining"
+ format_down = "No touchpad"
+ path = "/sys/class/power_supply/hid-ff:ff:ff:ff:ff:ff-battery/uevent"
+ path = "testcases/014-battery-capacity/uevent"
+ low_threshold = 10
+}