mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
18 lines
447 B
Nix
18 lines
447 B
Nix
# 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;
|
|
};
|
|
}
|