noctalia with fingerprint lock screen

This commit is contained in:
Miguel Palhas
2026-02-17 11:28:12 +00:00
parent 0993a23874
commit b6efd4d27b
23 changed files with 849 additions and 478 deletions
+12 -6
View File
@@ -22,11 +22,11 @@
export XCURSOR_THEME="Nordzy-cursors"
# Update Hyprland cursor theme
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-cursors 42
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-cursors 24
'';
kitty-theme = ''
# Switch all Kitty instances to dark theme
${pkgs.kitty}/bin/kitten themes --reload-in=all Catppuccin-Mocha
# Reload kitty config to pick up noctalia theme changes
kill -SIGUSR1 $(pidof kitty) 2>/dev/null || true
'';
claude-theme = ''
# Switch Claude Code to dark theme
@@ -35,6 +35,9 @@
${pkgs.jq}/bin/jq '.theme = "dark"' "$CLAUDE_CONFIG" > "$CLAUDE_CONFIG.tmp" && mv "$CLAUDE_CONFIG.tmp" "$CLAUDE_CONFIG"
fi
'';
noctalia-theme = ''
noctalia-shell ipc call darkMode setDark
'';
};
lightModeScripts = {
gtk-theme = ''
@@ -52,11 +55,11 @@
export XCURSOR_THEME="Nordzy-white"
# Update Hyprland cursor theme
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-white 42
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-white 24
'';
kitty-theme = ''
# Switch all Kitty instances to light theme
${pkgs.kitty}/bin/kitten themes --reload-in=all Catppuccin-Latte
# Reload kitty config to pick up noctalia theme changes
kill -SIGUSR1 $(pidof kitty) 2>/dev/null || true
'';
claude-theme = ''
# Switch Claude Code to light theme
@@ -65,6 +68,9 @@
${pkgs.jq}/bin/jq '.theme = "light"' "$CLAUDE_CONFIG" > "$CLAUDE_CONFIG.tmp" && mv "$CLAUDE_CONFIG.tmp" "$CLAUDE_CONFIG"
fi
'';
noctalia-theme = ''
noctalia-shell ipc call darkMode setLight
'';
};
};