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
This commit is contained in:
DannyDannyDanny 2026-03-24 10:20:10 +01:00
parent f9edde90e4
commit befe2f8a5b
4 changed files with 3 additions and 71 deletions

View file

@ -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