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; + } + } + } }