diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 21:34:31 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 21:34:31 +1000 |
| commit | 0d9ab6ae499cdc7b6c2f7cd8df4ccfbb6be14999 (patch) | |
| tree | fbdd938540e63256ffcb2dc281a051069d660c77 /config | |
| parent | services: fix proc lang (#454) (diff) | |
| download | caelestia-shell-0d9ab6ae499cdc7b6c2f7cd8df4ccfbb6be14999.tar.gz caelestia-shell-0d9ab6ae499cdc7b6c2f7cd8df4ccfbb6be14999.tar.bz2 caelestia-shell-0d9ab6ae499cdc7b6c2f7cd8df4ccfbb6be14999.zip | |
config: player aliases + config default player
Closes #441
Diffstat (limited to 'config')
| -rw-r--r-- | config/ServiceConfig.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/ServiceConfig.qml b/config/ServiceConfig.qml index 0411b1a..4124147 100644 --- a/config/ServiceConfig.qml +++ b/config/ServiceConfig.qml @@ -7,4 +7,10 @@ JsonObject { property bool useTwelveHourClock: Qt.locale().timeFormat(Locale.ShortFormat).toLowerCase().includes("a") 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" + } + ] } |