From befe2f8a5b9a103ef8346f1e3b5538c3d0a4ae69 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Tue, 24 Mar 2026 10:20:10 +0100 Subject: [PATCH] chore: remove unused Alacritty duplicates and dead script Clean up legacy Alacritty theme files and an unreferenced theme-detection script, and fix README links to existing setup docs. Made-with: Cursor --- README.md | 5 +++-- assets/alacritty/catppuccin-dark.toml | 28 -------------------------- assets/alacritty/catppuccin-light.toml | 28 -------------------------- scripts/detect-system-theme.sh | 13 ------------ 4 files changed, 3 insertions(+), 71 deletions(-) delete mode 100644 assets/alacritty/catppuccin-dark.toml delete mode 100644 assets/alacritty/catppuccin-light.toml delete mode 100755 scripts/detect-system-theme.sh diff --git a/README.md b/README.md index fbd92f9..a181f19 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Extension of [dannydannydanny/methodology](https://github.com/DannyDannyDanny/me ## Roadmap - [firefox-scrolling](firefox-scrolling.md) via terminal -- Server: [server](server.md); NixOS flake and bootstrap [nixos/readme.md](nixos/readme.md). SSH and secrets: [docs/ssh-and-secrets.md](docs/ssh-and-secrets.md). New server install (USB, LUKS, WiFi): [docs/server-installer-usb.md](docs/server-installer-usb.md). +- Server: [server-quickstart](server-quickstart.md); NixOS flake and bootstrap [nixos/readme.md](nixos/readme.md). SSH and secrets: [docs/ssh-and-secrets.md](docs/ssh-and-secrets.md). New server install (USB, LUKS, WiFi): [docs/server-installer-usb.md](docs/server-installer-usb.md). - nvim checkhealth; tmux setup; [fonts](https://www.programmingfonts.org/) / nerdfonts; [HN: home server](https://news.ycombinator.com/item?id=34271167) ## Windows @@ -40,9 +40,10 @@ ssh-add ~/.ssh/id_ed25519_github git clone git@github.com:DannyDannyDanny/dotfiles.git && cd dotfiles git config user.name "DannyDannyDanny" git config user.email "dth@taiga.ai" -bash install.sh ``` +Apply machine config from `nixos/` (see [CLAUDE.md](CLAUDE.md) for macOS rebuild commands or [nixos/readme.md](nixos/readme.md) for NixOS). + ## Good reads - [TODOs aren't for doing](https://sophiebits.com/2025/07/21/todos-arent-for-doing) diff --git a/assets/alacritty/catppuccin-dark.toml b/assets/alacritty/catppuccin-dark.toml deleted file mode 100644 index b19d112..0000000 --- a/assets/alacritty/catppuccin-dark.toml +++ /dev/null @@ -1,28 +0,0 @@ -# Catppuccin Mocha (Dark) theme for Alacritty -[colors.primary] -background = "0x1e1e2e" # base -foreground = "0xcdd6f4" # text - -[colors.cursor] -text = "0x1e1e2e" # base -cursor = "0xf5e0dc" # rosewater - -[colors.normal] -black = "0x45475a" # surface1 -red = "0xf38ba8" # red -green = "0xa6e3a1" # green -yellow = "0xf9e2af" # yellow -blue = "0x89b4fa" # blue -magenta = "0xf5c2e7" # pink -cyan = "0x94e2d5" # teal -white = "0xbac2de" # subtext1 - -[colors.bright] -black = "0x585b70" # surface2 -red = "0xf38ba8" # red -green = "0xa6e3a1" # green -yellow = "0xf9e2af" # yellow -blue = "0x89b4fa" # blue -magenta = "0xf5c2e7" # pink -cyan = "0x94e2d5" # teal -white = "0xa6adc8" # subtext0 diff --git a/assets/alacritty/catppuccin-light.toml b/assets/alacritty/catppuccin-light.toml deleted file mode 100644 index 04df7e6..0000000 --- a/assets/alacritty/catppuccin-light.toml +++ /dev/null @@ -1,28 +0,0 @@ -# Catppuccin Latte (Light) theme for Alacritty -[colors.primary] -background = "0xeff1f5" # base -foreground = "0x4c4f69" # text - -[colors.cursor] -text = "0xeff1f5" # base -cursor = "0xdc8a78" # rosewater - -[colors.normal] -black = "0x5c5f77" # surface1 -red = "0xd20f39" # red -green = "0x40a02b" # green -yellow = "0xdf8e1d" # yellow -blue = "0x1e40af" # blue -magenta = "0xea76cb" # pink -cyan = "0x179299" # teal -white = "0xacb0be" # subtext1 - -[colors.bright] -black = "0x6c6f85" # surface2 -red = "0xd20f39" # red -green = "0x40a02b" # green -yellow = "0xdf8e1d" # yellow -blue = "0x1e40af" # blue -magenta = "0xea76cb" # pink -cyan = "0x179299" # teal -white = "0xbcc0cc" # subtext0 diff --git a/scripts/detect-system-theme.sh b/scripts/detect-system-theme.sh deleted file mode 100755 index 39ccd67..0000000 --- a/scripts/detect-system-theme.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# Detect macOS system theme (light/dark mode) -# Returns "light" or "dark" - -# Get the current appearance setting -appearance=$(defaults read -g AppleInterfaceStyle 2>/dev/null) - -if [ "$appearance" = "Dark" ]; then - echo "dark" -else - echo "light" -fi