From 648e12342110718ca3736ec0082a688590cc0f7d Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 10 Apr 2026 12:13:36 +0200 Subject: Add schrottkatze rice: terminal, notifications, fuzzel, swayidle, layaway Kitty with Gruvbox colors, Dunst notifications, Fuzzel launcher, swayidle/swaylock screen locking, layaway layout tool. --- home/rices/schrottkatze/swayidle.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 home/rices/schrottkatze/swayidle.nix (limited to 'home/rices/schrottkatze/swayidle.nix') diff --git a/home/rices/schrottkatze/swayidle.nix b/home/rices/schrottkatze/swayidle.nix new file mode 100644 index 0000000..6d8525c --- /dev/null +++ b/home/rices/schrottkatze/swayidle.nix @@ -0,0 +1,15 @@ +{pkgs, ...}: { + services.swayidle = { + enable = true; + events = [ + { + event = "before-sleep"; + command = "${pkgs.swaylock}/bin/swaylock -fF -c 442244"; + } + { + event = "lock"; + command = "swaylock -c 441144"; + } + ]; + }; +} -- cgit v1.2.3