]> git.mdlowis.com Git - proto/labwc.git/commitdiff
src/common/dirs.c: add missing slash
authorJohan Malm <jgm323@gmail.com>
Tue, 26 Apr 2022 20:50:24 +0000 (21:50 +0100)
committerJohan Malm <jgm323@gmail.com>
Tue, 26 Apr 2022 20:50:24 +0000 (21:50 +0100)
Change "opt/share/themes" to "/opt/share/themes"

src/common/dir.c

index eb1f8215ca2928a78426b9a8067a9d0153727e03..c3864cb706e3045b53edf975fa61feeb236cec78 100644 (file)
@@ -32,7 +32,7 @@ static struct dir theme_dirs[] = {
        { "XDG_DATA_DIRS", "themes" },
        { NULL, "/usr/share/themes" },
        { NULL, "/usr/local/share/themes" },
-       { NULL, "opt/share/themes" },
+       { NULL, "/opt/share/themes" },
        { NULL, NULL }
 };