config: fix default playerAliases (#506)

This commit is contained in:
anders130 2025-08-29 16:33:44 +02:00 committed by GitHub
parent 81aa5324f4
commit 4b18c95ed1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 4 deletions

View file

@ -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,

View file

@ -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"
}
]
}