diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-07-22 03:14:39 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:35 -0700 |
| commit | 556386478890a563418038db19ad16d6fcd48a1e (patch) | |
| tree | 19d3d54b2397405de8e2392579b0a8196de1d91a /config/hypr/scripts/Kitty_themes.sh | |
| parent | 0a0582f9add94373712ceebe9ead32cdc8160006 (diff) | |
Fixed kitty theme dropping menu
Also added more metadata to settings search
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/scripts/Kitty_themes.sh
modified: config/hypr/scripts/Kool_Quick_Settings.sh
Diffstat (limited to 'config/hypr/scripts/Kitty_themes.sh')
| -rwxr-xr-x | config/hypr/scripts/Kitty_themes.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/hypr/scripts/Kitty_themes.sh b/config/hypr/scripts/Kitty_themes.sh index c4baa729..765e3ee6 100755 --- a/config/hypr/scripts/Kitty_themes.sh +++ b/config/hypr/scripts/Kitty_themes.sh @@ -126,7 +126,7 @@ apply_kitty_theme_to_config() { fi if pidof kitty >/dev/null 2>&1; then if command -v kitty >/dev/null 2>&1; then - kitty @ load-config >/dev/null 2>&1 || true + (kitty @ load-config >/dev/null 2>&1 || true) & fi if [ "$apply_mode" = "apply" ] && [ "$is_wallpaper_mode" -eq 0 ] && command -v kitty >/dev/null 2>&1; then ( @@ -229,7 +229,7 @@ while true; do echo "$original_kitty_config_content_backup" >"$kitty_config" sync_runtime_kitty_config if command -v kitty >/dev/null 2>&1; then - kitty @ load-config >/dev/null 2>&1 || true + (kitty @ load-config >/dev/null 2>&1 || true) & fi for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done notify_user "$iDIR/error.png" "Preview Error" "Failed to apply $theme_to_preview_now. Reverted." @@ -244,7 +244,7 @@ while true; do echo "$original_kitty_config_content_backup" >"$kitty_config" sync_runtime_kitty_config if command -v kitty >/dev/null 2>&1; then - kitty @ load-config >/dev/null 2>&1 || true + (kitty @ load-config >/dev/null 2>&1 || true) & fi for pid_kitty in $(pidof kitty); do if [ -n "$pid_kitty" ]; then kill -SIGUSR1 "$pid_kitty"; fi; done break |
