nosignal-shell/config/ServiceConfig.qml
2 * r + 2 * t 783057ab0d background: add visualiser
Also dashboard.visualiserBars -> services.visualiserBars
2025-08-25 20:13:55 +10:00

18 lines
705 B
QML

import Quickshell.Io
import QtQuick
JsonObject {
property string weatherLocation: "" // A lat,long pair or empty for autodetection, e.g. "37.8267,-122.4233"
property bool useFahrenheit: [Locale.ImperialUSSystem, Locale.ImperialSystem].includes(Qt.locale().measurementSystem)
property bool useTwelveHourClock: Qt.locale().timeFormat(Locale.ShortFormat).toLowerCase().includes("a")
property string gpuType: ""
property int visualiserBars: 45
property real audioIncrement: 0.1
property bool smartScheme: true
property string defaultPlayer: "Spotify"
property list<var> playerAliases: [
{
"com.github.th_ch.youtube_music": "YT Music"
}
]
}