From a16c957a8bd13e0cfd09928ca0a22fecd3681e44 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 11 Jun 2026 21:50:48 +1000 Subject: [PATCH] fix: use standard paths for default lyrics dir Also use capitalised lyrics dir for consistency with wallpaper dir --- plugin/src/Caelestia/Config/userpaths.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/src/Caelestia/Config/userpaths.hpp b/plugin/src/Caelestia/Config/userpaths.hpp index da6973a7..48607f12 100644 --- a/plugin/src/Caelestia/Config/userpaths.hpp +++ b/plugin/src/Caelestia/Config/userpaths.hpp @@ -16,7 +16,8 @@ class UserPaths : public ConfigObject { CONFIG_GLOBAL_PROPERTY( QString, wallpaperDir, QStandardPaths::writableLocation(QStandardPaths::PicturesLocation) + u"/Wallpapers"_s) - CONFIG_GLOBAL_PROPERTY(QString, lyricsDir, QDir::homePath() + u"/Music/lyrics/"_s) + CONFIG_GLOBAL_PROPERTY( + QString, lyricsDir, QStandardPaths::writableLocation(QStandardPaths::MusicLocation) + u"/Lyrics/"_s) CONFIG_PROPERTY(QString, sessionGif, u"root:/assets/kurukuru.gif"_s) CONFIG_PROPERTY(QString, mediaGif, u"root:/assets/bongocat.gif"_s) CONFIG_PROPERTY(QString, noNotifsPic, u"root:/assets/dino.png"_s)