summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-06-03 19:12:46 +0200
committermakefu <github@syntax-fehler.de>2023-06-03 19:12:46 +0200
commite628948d55a6ddf422da031fce64cdd26d877839 (patch)
tree0fda567b09f9db84fb6a0959b64fbe846cbcbf4c /makefu
parent4918315e93d4942c01b4a0d089d30bfc91439651 (diff)
ma main-laptop: use gtk power management instead of power-action
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/main-laptop.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/makefu/2configs/main-laptop.nix b/makefu/2configs/main-laptop.nix
index 0f2604b1e..296201808 100644
--- a/makefu/2configs/main-laptop.nix
+++ b/makefu/2configs/main-laptop.nix
@@ -22,51 +22,6 @@ in {
users.users.${config.krebs.build.user.name}.extraGroups = [ "dialout" ];
- krebs.power-action = let
- #speak = "XDG_RUNTIME_DIR=/run/user/$(id -u) ${pkgs.espeak}/bin/espeak"; # when run as user
- speak = "${pkgs.espeak}/bin/espeak"; # systemwide pulse
- whisper = text: ''${speak} -v +whisper -s 110 "${text}"'';
-
- note = pkgs.writeDash "note-as-user" ''
- eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(${pkgs.procps}/bin/pgrep -u ${user} ${window-manager})/environ)"
- ${pkgs.libnotify}/bin/notify-send "$@";
- '';
- in {
- enable = true;
- inherit user;
- plans.low-battery = {
- upperLimit = 25;
- lowerLimit = 15;
- charging = false;
- action = pkgs.writeDash "low-speak" ''
- ${whisper "power level low, please plug me in"}
- '';
- };
- plans.nag-harder = {
- upperLimit = 15;
- lowerLimit = 5;
- charging = false;
- action = pkgs.writeDash "crit-speak" ''
- ${note} Battery -u critical -t 60000 "Power level critical, do something!"
- ${whisper "Power level critical, do something"}
- '';
- };
- plans.last-chance = {
- upperLimit = 5;
- lowerLimit = 3;
- charging = false;
- action = pkgs.writeDash "suspend-wrapper" ''
- ${note} Battery -u crit "You've had your chance, suspend in 5 seconds"
- ${concatMapStringsSep "\n" (i: ''
- ${note} -u critical -t 1000 ${toString i}
- ${speak} ${toString i} &
- sleep 1
- '')
- [ 5 4 3 2 1 ]}
- /var/run/wrappers/bin/sudo ${pkgs.systemd}/bin/systemctl suspend
- '';
- };
- };
security.sudo.extraConfig = "${config.krebs.power-action.user} ALL= (root) NOPASSWD: ${pkgs.systemd}/bin/systemctl suspend";
location.latitude = 48.7;