This commit is contained in:
Miguel Palhas
2026-03-18 09:41:46 +00:00
parent c9f554e276
commit a8e27ee9d3
6 changed files with 53 additions and 25 deletions
-22
View File
@@ -24,10 +24,6 @@
# Update Hyprland cursor theme
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-cursors 24
'';
kitty-theme = ''
# 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
CLAUDE_CONFIG=~/.claude.json
@@ -38,13 +34,6 @@
noctalia-theme = ''
noctalia-shell ipc call darkMode setDark
'';
neovim-theme = ''
for sock in /run/user/$(id -u)/nvim.*.0; do
[ -S "$sock" ] && ${pkgs.neovim}/bin/nvim --server "$sock" \
--remote-expr 'luaeval("require(\"theme-sync\").apply_theme(\"dark\")")' \
2>/dev/null || true
done
'';
};
lightModeScripts = {
gtk-theme = ''
@@ -64,10 +53,6 @@
# Update Hyprland cursor theme
${pkgs.hyprland}/bin/hyprctl setcursor Nordzy-white 24
'';
kitty-theme = ''
# 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
CLAUDE_CONFIG=~/.claude.json
@@ -78,13 +63,6 @@
noctalia-theme = ''
noctalia-shell ipc call darkMode setLight
'';
neovim-theme = ''
for sock in /run/user/$(id -u)/nvim.*.0; do
[ -S "$sock" ] && ${pkgs.neovim}/bin/nvim --server "$sock" \
--remote-expr 'luaeval("require(\"theme-sync\").apply_theme(\"light\")")' \
2>/dev/null || true
done
'';
};
};