From b117c80e47bb520a187eb224881b4b988355d008 Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 3 Jun 2026 09:46:15 -0400 Subject: [PATCH] settings: fix blur error message --- quickshell/Modules/Settings/ThemeColorsTab.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index f3758a04..0519abae 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -1868,7 +1868,7 @@ Item { tags: ["blur", "background", "transparency", "glass", "frosted"] settingKey: "blurEnabled" text: I18n.tr("Background Blur") - description: !BlurService.available ? I18n.tr("Requires a newer version of Quickshell") : I18n.tr("Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.") + description: !BlurService.available ? I18n.tr("Your compositor does not support background blur (ext-background-effect-v1)") : I18n.tr("Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.") checked: SettingsData.blurEnabled ?? false enabled: BlurService.available onToggled: checked => SettingsData.set("blurEnabled", checked)