refactor: major architectural restructure for theme-centric organization
Theme System: - Move all theme app configs to apps/ subdirectory (20 themes) - Add theme-loader.nix for dynamic theme config deployment - Simplify stylix.nix to focus on base theming only Override System: - Add overrides.nix for file-based config overrides - Add behavior-configs.nix for non-visual configuration - Split hypr/nomarchy.conf into behavior vs visual sections Module Improvements: - Add lib.mkDefault to all customizable settings - Add modules/lib/ with shared utilities and state schema - Update all home and system modules for downstream overridability Installer: - New minimal TTY installer (installer/install.sh) - Golden path: BTRFS + LUKS2 (disko-golden.nix) - New installer-iso.nix for TTY-only installation - Keep graphical installer as installerIsoGraphical option Cleanup: - Remove obsolete install.sh, disko-ext4.nix, install-nomarchy.sh - Update live-iso.nix references - Add .claude/ to .gitignore for local IDE settings Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
63
assets/themes/retro-82/apps/btop.theme
Normal file
63
assets/themes/retro-82/apps/btop.theme
Normal file
@@ -0,0 +1,63 @@
|
||||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||
theme[main_bg]=""
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#f6dcac"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#3f8f8a"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#8cbfb8"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#134e5a"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#f6dcac"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#134e5a"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#3f8f8a"
|
||||
|
||||
# Box outline and divider line color
|
||||
theme[cpu_box]="#e97b3c"
|
||||
theme[mem_box]="#e97b3c"
|
||||
theme[net_box]="#e97b3c"
|
||||
theme[proc_box]="#e97b3c"
|
||||
theme[div_line]="#134e5a"
|
||||
|
||||
# Gradient for all meters and graphs
|
||||
theme[temp_start]="#a7c9c6"
|
||||
theme[temp_mid]="#8cbfb8"
|
||||
theme[temp_end]="#028391"
|
||||
|
||||
theme[cpu_start]="#a7c9c6"
|
||||
theme[cpu_mid]="#e97b3c"
|
||||
theme[cpu_end]="#f85525"
|
||||
|
||||
theme[free_start]="#faa968"
|
||||
theme[free_mid]="#e97b3c"
|
||||
theme[free_end]="#f85525"
|
||||
|
||||
theme[cached_start]="#faa968"
|
||||
theme[cached_mid]="#e97b3c"
|
||||
theme[cached_end]="#f85525"
|
||||
|
||||
theme[available_start]="#faa968"
|
||||
theme[available_mid]="#e97b3c"
|
||||
theme[available_end]="#f85525"
|
||||
|
||||
theme[used_start]="#faa968"
|
||||
theme[used_mid]="#e97b3c"
|
||||
theme[used_end]="#f85525"
|
||||
|
||||
theme[download_start]="#faa968"
|
||||
theme[download_mid]="#e97b3c"
|
||||
theme[download_end]="#f85525"
|
||||
|
||||
theme[upload_start]="#faa968"
|
||||
theme[upload_mid]="#e97b3c"
|
||||
theme[upload_end]="#f85525"
|
||||
1
assets/themes/retro-82/apps/chromium.theme
Normal file
1
assets/themes/retro-82/apps/chromium.theme
Normal file
@@ -0,0 +1 @@
|
||||
0,23,46
|
||||
9
assets/themes/retro-82/apps/hyprland.conf
Normal file
9
assets/themes/retro-82/apps/hyprland.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
$activeBorderColor = rgb(faa968)
|
||||
|
||||
general {
|
||||
col.active_border = $activeBorderColor
|
||||
}
|
||||
|
||||
group {
|
||||
col.border_active = $activeBorderColor
|
||||
}
|
||||
13
assets/themes/retro-82/apps/neovim.lua
Normal file
13
assets/themes/retro-82/apps/neovim.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return {
|
||||
{
|
||||
"OldJobobo/retro-82.nvim",
|
||||
name = "retro-82",
|
||||
priority = 1000,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "retro-82",
|
||||
},
|
||||
},
|
||||
}
|
||||
5
assets/themes/retro-82/apps/swayosd.css
Normal file
5
assets/themes/retro-82/apps/swayosd.css
Normal file
@@ -0,0 +1,5 @@
|
||||
@define-color background-color #00172e;
|
||||
@define-color border-color #134e5a;
|
||||
@define-color label #f6dcac;
|
||||
@define-color image #f6dcac;
|
||||
@define-color progress #e97b3c;
|
||||
4
assets/themes/retro-82/apps/vscode.json
Normal file
4
assets/themes/retro-82/apps/vscode.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "Retro '82",
|
||||
"extension": "oldjobobo.retro-82-theme"
|
||||
}
|
||||
3
assets/themes/retro-82/apps/waybar.css
Normal file
3
assets/themes/retro-82/apps/waybar.css
Normal file
@@ -0,0 +1,3 @@
|
||||
@define-color bg #00172e;
|
||||
@define-color foreground #f6dcac;
|
||||
@define-color background alpha(@bg, 0.8);
|
||||
Reference in New Issue
Block a user