diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-29 16:53:07 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-29 16:53:07 -0500 |
| commit | 14d08958140befb7c5322cad1d42ed0a16190215 (patch) | |
| tree | 3b2e26956ab179722077fe7d5704352e39e57220 | |
| parent | be74b118bab91e793dd3c24e677cc1e99baa1d84 (diff) | |
Removed redundant kitty theme options
| -rwxr-xr-x | config/hypr/scripts/Kitty_themes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index 300cfcb4..fde5edbd 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -79,7 +79,7 @@ fi original_kitty_config_content_backup=$(cat "$kitty_config") -mapfile -t available_theme_names < <(find "$kitty_themes_DiR" -maxdepth 1 -name "*.conf" -type f -printf "%f\n" | sed 's/\.conf$//' | sort) +mapfile -t available_theme_names < <(find "$kitty_themes_DiR" -maxdepth 1 -name "*.conf" -type f -printf "%f\n" | sed 's/\.conf$//' | grep -v -E '^(00-Default|01-Wallust)$' | sort) available_theme_names=("Set by wallpaper" "${available_theme_names[@]}") if [ ${#available_theme_names[@]} -eq 0 ]; then |
