diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-25 23:14:28 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-25 23:14:28 -0600 |
| commit | 3ee92b453e2c3d8a824bd203396805bf203b9790 (patch) | |
| tree | 45abdfff7c8f75f7033f9bc9b2dce2604955d275 /dotfiles/hyprland/.local/bin/set-theme | |
| parent | 717f5fe83960bd308ecff6a77c0dc3f516efad55 (diff) | |
feat(themes): add hyprlock and Xresources to theme system
Add themed configs for:
- hyprlock.conf: lock screen colors match theme
- Xresources: X11 apps and Emacs color support
Update set-theme script to copy these files and run xrdb.
Hudson uses adjusted bright yellow (#e0b040) for gold cohesion.
Removed gruvbox references from Xresources.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/hyprland/.local/bin/set-theme')
| -rwxr-xr-x | dotfiles/hyprland/.local/bin/set-theme | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dotfiles/hyprland/.local/bin/set-theme b/dotfiles/hyprland/.local/bin/set-theme index 48fc8ee..338aab9 100755 --- a/dotfiles/hyprland/.local/bin/set-theme +++ b/dotfiles/hyprland/.local/bin/set-theme @@ -41,6 +41,11 @@ apply_theme() { cp "$THEME_DIR/$theme/fuzzel.ini" "$HOME/.config/fuzzel/fuzzel.ini" cp "$THEME_DIR/$theme/waybar.css" "$HOME/.config/waybar/style.css" cp "$THEME_DIR/$theme/dunstrc" "$HOME/.config/dunst/dunstrc" + cp "$THEME_DIR/$theme/hyprlock.conf" "$HOME/.config/hypr/hyprlock.conf" + cp "$THEME_DIR/$theme/Xresources" "$HOME/.Xresources" + + # Apply Xresources (for X11 apps and Emacs) + xrdb -merge "$HOME/.Xresources" 2>/dev/null # Apply Hyprland colors directly via hyprctl case "$theme" in |
