From 715c8fb12df6767e311e328e8b7f07ac28947ce6 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 10 Apr 2025 20:12:20 -0700 Subject: [PATCH] fix battery sysfs interface --- beepy.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beepy.lisp b/beepy.lisp index 3d8b574..fc1f721 100644 --- a/beepy.lisp +++ b/beepy.lisp @@ -162,7 +162,7 @@ (defun battery () (list - (cons :percent (read-interface-numeric "battery_percentage")) + (cons :percent (read-interface-numeric "battery_percent")) (cons :raw (read-interface-numeric "battery_raw")) (cons :volts (read-interface-numeric "battery_volts"))))