Files
Gabriel Brown cb7c09d208 Give the desktop real themes, video wallpapers, and honest titlebars
Appearance now opens on Themes: light and dark side by side, each
remembering its own choice, over galleries of ten shipped themes —
Tokyo Moon and Day joined by Moon Rose, Catppuccin, Nord, Gruvbox and
Everforest in both modes. A theme is a complete palette: the catalog
lives in themes.json, Theme.qml reads every color token from the
active record, and one render pipeline carries it to kitty, tmux,
btop, GTK, Vicinae, Firefox's chrome, and the lock screen. The Theme
editor builds new ones from four wells — wheel, hex, or eyedropper —
with derived surfaces, a saturation slider, debounced fine-tune, and
effects that save with the theme. Custom edits finally keep GNOME's
accent, kitty's border, and hyprlock in sync.

Wallpapers can be video: mpvpaper per output, hardware-decoded, muted
and looped, supervised and respawned. Panama owns the pausing — games,
battery, and a bar pill for right now — because the compositor
rebuilds full-screen blur for every frame a video wallpaper draws.
The lock screen gets a still frame.

Titlebars stop lying. GNOME apps get close-only on your chosen side,
the maximize and double-click settings are gone, the Settings window
obeys the same rules, and its titlebar can be turned off entirely.
Typography becomes five labeled dropdowns instead of a wall of
samples.

Contracts updated and written throughout (165 now); per the redesign
workflow none were executed — the full sweep runs once at the end.

Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8
2026-08-23 23:39:04 -04:00

114 lines
3.7 KiB
JSON

{
"$schema": "https://vicinae.com/schemas/config.json",
// Vicinae is the launcher, opened by SUPER+A / SUPER+R / SUPER+SPACE.
// It replaces GNOME's app grid and run dialog, plus the clipboard-indicator
// and emoji-copy extensions, so its clipboard and emoji views are bound
// directly in hypr/keybinds.lua.
// Vicinae 0.26 selects a theme per system appearance, and there is a theme
// for each: the launcher follows Panama's light/dark setting instead of
// staying dark on a light desktop.
//
// Both are GENERATED, by quickshell/scripts/panama-theme-apps, from whichever
// Panama theme is chosen for that scheme -- so the launcher wears Catppuccin
// when the desktop does, rather than being pinned to the two Tokyo Nights the
// way the authored themes/ files were. They are written straight into
// ~/.local/share/vicinae/themes, beside the symlinks to the authored ones: a
// generated file inside the repository's themes folder would show up as a
// change to the repository every time the theme moved.
"theme": {
"light": {
"name": "panama-light",
"icon_theme": "auto"
},
"dark": {
"name": "panama-dark",
"icon_theme": "auto"
}
},
"favicon_service": "twenty",
"font": {
"normal": {
"family": "Adwaita Sans"
}
},
// Spotlight in silhouette, Prism in material: at rest the launcher is a
// single centered search surface, then expands into the full command view as
// soon as a query is entered. Hyprland supplies the real background blur.
"launcher_window": {
"opacity": 0.86,
"material": "blur",
"rounding": 22,
"compact_mode": {
"enabled": true
},
"size": {
"width": 860,
"height": 520
},
"client_side_decorations": {
"enabled": true,
"border_width": 1,
"shadow_size": 18
},
"layer_shell": {
"enabled": true,
"keyboard_interactivity": "exclusive",
"layer": "top"
}
},
// Escape backs out one level rather than closing outright, matching how the
// GNOME overview behaved.
"escape_key_behavior": "navigate_back",
"pop_on_backspace": true,
// Exclusive layer-shell focus keeps the compact search field ready for the
// very first keystroke. Escape or the launcher key dismisses it reliably.
"close_on_focus_loss": false,
"pop_to_root_on_close": true,
// Single click activates, matching GNOME's app grid.
"activate_on_single_click": true,
// File search lives behind its own command rather than polluting root search
// results — the root search stays fast and predictable that way.
"search_files_in_root": false,
// Needed for "paste to active window" and for snippet keyword expansion.
// Depends on the uinput module, which the package's modules-load.d entry
// loads at boot.
"input_server": {
"enabled": true
},
"telemetry": {
"system_info": false
},
// Ported from GNOME App Hider. Vicinae keeps these applications installed
// and launchable by ID, but omits them from normal launcher search.
"providers": {
"applications": {
"entrypoints": {
"org.gnome.Tour": { "enabled": false },
"org.gnome.Yelp": { "enabled": false },
"java-latest-openjdk-jconsole": { "enabled": false },
"htop": { "enabled": false },
"org.libreoffice.LibreOffice": { "enabled": false },
"nvtop": { "enabled": false },
"org.torproject.torbrowser-launcher.settings": { "enabled": false },
"ranger": { "enabled": false },
"btop": { "enabled": false },
"io.github.benjamimgois.goverlay": { "enabled": false },
"protontricks": { "enabled": false },
"winetricks": { "enabled": false }
}
}
}
}