diff --git a/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml b/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml index 11fc82966..4636d666b 100644 --- a/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml @@ -24,6 +24,34 @@ ContentPage { } } + ContentSection { + icon: "music_cast" + title: Translation.tr("Music Recognition") + + ConfigSpinBox { + icon: "timer_off" + text: Translation.tr("Total duration timeout (s)") + value: Config.options.musicRecognition.timeout + from: 10 + to: 100 + stepSize: 2 + onValueChanged: { + Config.options.musicRecognition.timeout = value; + } + } + ConfigSpinBox { + icon: "av_timer" + text: Translation.tr("Polling interval (s)") + value: Config.options.musicRecognition.interval + from: 2 + to: 10 + stepSize: 1 + onValueChanged: { + Config.options.musicRecognition.interval = value; + } + } + } + ContentSection { icon: "cell_tower" title: Translation.tr("Networking") @@ -57,34 +85,6 @@ ContentPage { } - ContentSection { - icon: "music_cast" - title: Translation.tr("Music Recognition") - - ConfigSpinBox { - icon: "timer_off" - text: Translation.tr("Total duration timeout (s)") - value: Config.options.musicRecognition.timeout - from: 10 - to: 100 - stepSize: 2 - onValueChanged: { - Config.options.musicRecognition.timeout = value; - } - } - ConfigSpinBox { - icon: "av_timer" - text: Translation.tr("Polling interval (s)") - value: Config.options.musicRecognition.interval - from: 2 - to: 10 - stepSize: 1 - onValueChanged: { - Config.options.musicRecognition.interval = value; - } - } - } - ContentSection { icon: "search" title: Translation.tr("Search")