From 13065d7e5affb5f1f8ea49d8c1c0f22bc5e25ff5 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 15 Oct 2025 19:27:14 +0200 Subject: [PATCH] settings: add toggle for wallpaper selector use system file picker --- .../ii/modules/settings/InterfaceConfig.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index fffeaa13a..7db69a514 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -770,4 +770,18 @@ ContentPage { } } } + + ContentSection { + icon: "wallpaper_slideshow" + title: Translation.tr("Wallpaper selector") + + ConfigSwitch { + buttonIcon: "ad" + text: Translation.tr('Use system file picker') + checked: Config.options.wallpaperSelector.useSystemFileDialog + onCheckedChanged: { + Config.options.wallpaperSelector.useSystemFileDialog = checked; + } + } + } }