Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ chezmoi init --apply collieiscute -v

- Linux uses Noctalia's wallpaper-derived **light** palette; macOS and Windows use Matugen with the same per-app theme paths.
- Generated app themes stay outside chezmoi. [`.chezmoiexternal.toml`](home/.chezmoiexternal.toml) only pins the Matugen template inputs.
- Fish and cursor themes stay independent.
- Fish inherits the terminal ANSI palette; cursor themes stay independent.
- Font: **JetBrainsMono Nerd Font** across every terminal / bar / lock screen.

### chezmoi quirks I keep tripping over (that this repo handles)
Expand Down Expand Up @@ -204,7 +204,7 @@ AeroSpace restores the swapped root layouts and window states where possible; it
- [`aerospace`](https://github.com/nikitabobko/AeroSpace) — tiling WM.
- [`karabiner-elements`](https://karabiner-elements.pqrs.org) — keyboard remapper.
- [`raycast`](https://raycast.com) — launcher.
- Desktop wallpaper is deployed by chezmoi to `~/.config/wallpapers` and applied by `run_onchange_after_3-configure-macos-wallpaper.sh.tmpl`.
- Desktop wallpaper is deployed by chezmoi to `~/.config/wallpapers`; `run_onchange_after_6-apply-theme.sh.tmpl` applies the initial wallpaper and Matugen palette, and `chezmoi theme [IMAGE]` changes both later.

### CLI tooling

Expand All @@ -228,7 +228,6 @@ AeroSpace restores the swapped root layouts and window states where possible; it

### Fish plugins (managed by [`fisher`](https://github.com/jorgebucaran/fisher))

- `catppuccin/fish` — colour theme.
- `edc/bass` — run bash scripts in fish.
- `jorgebucaran/nvm.fish` — Node version manager.
- `patrickf1/fzf.fish` — fzf integrations.
Expand Down
8 changes: 4 additions & 4 deletions home/.chezmoiexternal.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ checksum.sha256 = "65284a68c482fa5226cb937bb7e9fc094e14eb66f2688fc8a646503300a46
{{ if eq .chezmoi.os "darwin" -}}
[".config/matugen/templates/tmux/tmux.conf"]
type = "file"
url = "https://raw.githubusercontent.com/CollieIsCute/community-templates/6d7e23d9ca015dcdab68d73a896c2f99c9086a92/tmux/tmux.conf"
checksum.sha256 = "1e0ec6100855f3f303ed02fb22c3cac1d608a06db2ec23b61217b2556800c54a"
url = "https://raw.githubusercontent.com/noctalia-dev/community-templates/main/tmux/tmux.conf"
refreshPeriod = "24h"

[".config/matugen/templates/tmux/apply.sh"]
type = "file"
url = "https://raw.githubusercontent.com/CollieIsCute/community-templates/6d7e23d9ca015dcdab68d73a896c2f99c9086a92/tmux/apply.sh"
checksum.sha256 = "8e5e7adaa14588251924e926e4a6378523d8b42d64ba991e9094f0bafe8c3a70"
url = "https://raw.githubusercontent.com/noctalia-dev/community-templates/main/tmux/apply.sh"
refreshPeriod = "24h"
{{ end -}}

[".config/matugen/templates/neovim.lua"]
Expand Down
19 changes: 1 addition & 18 deletions home/dot_config/noctalia/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,7 @@ wallpaper_scheme = "faithful"
enable_builtin_templates = true
enable_community_templates = true
builtin_ids = ["alacritty", "btop", "ghostty", "gtk3", "gtk4", "hyprland", "kitty", "qt", "wezterm"]
community_ids = ["opencode", "discord", "telegram", "neovim", "steam", "fastfetch", "zellij", "bat", "lazygit"]

# Temporary until https://github.com/noctalia-dev/community-templates/pull/101 lands.
[theme.templates.user.tmux]
input_path = "$XDG_CACHE_HOME/noctalia/community-templates/tmux-6d7e23d/tmux.conf"
output_path = "$XDG_CONFIG_HOME/tmux/themes/noctalia.conf"
pre_hook = '''
set -eu
cache="${XDG_CACHE_HOME:-$HOME/.cache}/noctalia/community-templates/tmux-6d7e23d"
if [ ! -s "$cache/tmux.conf" ] || [ ! -s "$cache/apply.sh" ]; then
mkdir -p "$cache"
curl -fsSL "https://raw.githubusercontent.com/CollieIsCute/community-templates/6d7e23d9ca015dcdab68d73a896c2f99c9086a92/tmux/tmux.conf" -o "$cache/tmux.conf.tmp"
curl -fsSL "https://raw.githubusercontent.com/CollieIsCute/community-templates/6d7e23d9ca015dcdab68d73a896c2f99c9086a92/tmux/apply.sh" -o "$cache/apply.sh.tmp"
mv "$cache/tmux.conf.tmp" "$cache/tmux.conf"
mv "$cache/apply.sh.tmp" "$cache/apply.sh"
fi
'''
post_hook = 'bash "${XDG_CACHE_HOME:-$HOME/.cache}/noctalia/community-templates/tmux-6d7e23d/apply.sh"'
community_ids = ["opencode", "discord", "telegram", "neovim", "steam", "fastfetch", "zellij", "bat", "lazygit", "tmux"]

[notification]
enable_daemon = true
Expand Down
Loading