From f9f08580df40d7ef2f9278418a8d9337d67ea12c Mon Sep 17 00:00:00 2001 From: James Maina <68908122+endafk@users.noreply.github.com> Date: Wed, 22 Apr 2026 23:06:54 +0300 Subject: [PATCH] Lowercase theme name in omarchy-theme-install to match omarchy-theme-set (#5392) --- bin/omarchy-theme-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-theme-install b/bin/omarchy-theme-install index 0c0f0c4e..5949c7ea 100755 --- a/bin/omarchy-theme-install +++ b/bin/omarchy-theme-install @@ -15,7 +15,7 @@ if [[ -z $REPO_URL ]]; then fi THEMES_DIR="$HOME/.config/omarchy/themes" -THEME_NAME=$(basename "$REPO_URL" .git | sed -E 's/^omarchy-//; s/-theme$//') +THEME_NAME=$(basename "$REPO_URL" .git | sed -E 's/^omarchy-//; s/-theme$//' | tr '[:upper:]' '[:lower:]') THEME_PATH="$THEMES_DIR/$THEME_NAME" # Remove existing theme if present