From: Johan Malm Date: Tue, 26 Apr 2022 20:50:24 +0000 (+0100) Subject: src/common/dirs.c: add missing slash X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=b94f3b1af0319722e9f5eb6ea0ceeb011202ce3d;p=proto%2Flabwc.git src/common/dirs.c: add missing slash Change "opt/share/themes" to "/opt/share/themes" --- diff --git a/src/common/dir.c b/src/common/dir.c index eb1f8215..c3864cb7 100644 --- a/src/common/dir.c +++ b/src/common/dir.c @@ -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 } };