summaryrefslogtreecommitdiff
path: root/common/modules/matugen/templates/matugen-swaylock.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/modules/matugen/templates/matugen-swaylock.nix')
-rw-r--r--common/modules/matugen/templates/matugen-swaylock.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/common/modules/matugen/templates/matugen-swaylock.nix b/common/modules/matugen/templates/matugen-swaylock.nix
deleted file mode 100644
index 723c94e..0000000
--- a/common/modules/matugen/templates/matugen-swaylock.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-{
- config = lib.mkIf config.beeMods.mango.enable {
- xdg.configFile."matugen/templates/swaylock-colors" = {
- text = ''
- show-failed-attempts
- indicator-radius=70
- indicator-thickness=9
- line-uses-inside
- image={{image}}
-
- # --- Base Colors ---
- color={{colors.background.default.hex}}
- layout-text-color={{colors.on_surface.default.hex}}
-
- # --- State: Idle (Gray-like ring for visibility) ---
- # Using surface_variant for a distinct but neutral gray ring
- ring-color={{colors.surface_variant.default.hex}}
- inside-color={{colors.surface.default.hex}}
- text-color={{colors.on_surface.default.hex}}
-
- # Key Highlight (When typing)
- key-hl-color={{colors.primary.default.hex}}
- separator-color={{colors.outline.default.hex}}
-
- # --- State: Verifying (Pressing Enter) ---
- # Switched to Primary to make the "Enter" state pop
- ring-ver-color={{colors.primary.default.hex}}
- inside-ver-color={{colors.primary_container.default.hex}}
- text-ver-color={{colors.on_primary_container.default.hex}}
-
- # --- State: Wrong Password ---
- ring-wrong-color={{colors.error.default.hex}}
- inside-wrong-color={{colors.error_container.default.hex}}
- text-wrong-color={{colors.on_error_container.default.hex}}
-
- # --- State: Backspace / Clear ---
- ring-clear-color={{colors.secondary.default.hex}}
- inside-clear-color={{colors.surface_variant.default.hex}}
- text-clear-color={{colors.on_surface_variant.default.hex}}
-
- # --- Misc ---
- bs-hl-color={{colors.error.default.hex}}
- caps-lock-key-hl-color={{colors.tertiary.default.hex}}
- caps-lock-bs-hl-color={{colors.error.default.hex}}
- '';
- };
- };
-}