Qt improvments. Created a custom battery icon tray

This commit is contained in:
Tomas Rivera
2026-04-11 12:26:19 +02:00
parent 5812d50256
commit e8fa9451e9
12 changed files with 222 additions and 388 deletions
+17
View File
@@ -0,0 +1,17 @@
# don't works. some GTK error. I let it here if someday, someone is interest in this shit.
# ChatGPT half baked a replacement that works on my system.
# see ../qt/qtbatticon
{
config,
pkgs,
...
}: {
services.cbatticon = {
enable = true;
lowLevelPercent = 20;
criticalLevelPercent = 5;
batteryId = "BAT1";
hideNotification = true; # we use another script for battery notifications
updateIntervalSeconds = 10;
};
}