diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | config/ServiceConfig.qml | 3 |
2 files changed, 3 insertions, 4 deletions
@@ -400,9 +400,7 @@ programs.caelestia = { "defaultPlayer": "Spotify", "gpuType": "", "playerAliases": [ - { - "com.github.th_ch.youtube_music": "YT Music" - } + { "from": "com.github.th_ch.youtube_music", "to": "YT Music" } ], "weatherLocation": "", "useFahrenheit": false, diff --git a/config/ServiceConfig.qml b/config/ServiceConfig.qml index c8a49b3..c9752d7 100644 --- a/config/ServiceConfig.qml +++ b/config/ServiceConfig.qml @@ -12,7 +12,8 @@ JsonObject { property string defaultPlayer: "Spotify" property list<var> playerAliases: [ { - "com.github.th_ch.youtube_music": "YT Music" + "from": "com.github.th_ch.youtube_music", + "to": "YT Music" } ] } |