aboutsummaryrefslogtreecommitdiff
path: root/rosenrot.c
diff options
context:
space:
mode:
authorNunoSempere <nuno.semperelh@protonmail.com>2024-03-14 19:31:04 -0300
committerNunoSempere <nuno.semperelh@protonmail.com>2024-03-14 19:31:04 -0300
commitaf208844b575edb6ce9205507289a00743a8bf4e (patch)
treec36ebd9e175a4d60a1b31d0f94f085a9d1f90aae /rosenrot.c
parent878d6a890bdc1a8381b0c44c80c36d829cc28fc1 (diff)
reorg makefile and make runtime locations less messy
In particular, stop using the installation directory for anything and instead move to /opt/rosenrot The user specific cache remains at /home/user/.cache
Diffstat (limited to 'rosenrot.c')
-rw-r--r--rosenrot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rosenrot.c b/rosenrot.c
index 680ae41..1706a3c 100644
--- a/rosenrot.c
+++ b/rosenrot.c
@@ -414,7 +414,7 @@ int main(int argc, char** argv)
gtk_init(NULL, NULL); // <https://docs.gtk.org/gtk3/func.init.html>
g_object_set(gtk_settings_get_default(), GTK_SETTINGS_CONFIG_H, NULL); // <https://docs.gtk.org/gobject/method.Object.set.html>
GtkCssProvider* css = gtk_css_provider_new();
- gtk_css_provider_load_from_path(css, "/usr/share/themes/rosenrot/style.css", NULL);
+ gtk_css_provider_load_from_path(css, "/opt/rosenrot/style.css", NULL);
gtk_style_context_add_provider_for_screen(gdk_screen_get_default(), GTK_STYLE_PROVIDER(css), 800);
/* Initialize GTK objects. These are declared as static globals at the top of this file */