From b94f3b1af0319722e9f5eb6ea0ceeb011202ce3d Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Tue, 26 Apr 2022 21:50:24 +0100 Subject: [PATCH] src/common/dirs.c: add missing slash Change "opt/share/themes" to "/opt/share/themes" --- src/common/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }; -- 2.52.0