From 3994ddf1b4dd3ad2a4b7ed2672418bb4ee5f4548 Mon Sep 17 00:00:00 2001 From: o9000 Date: Tue, 5 Jan 2016 23:53:51 +0100 Subject: [PATCH] Disable copying of sample themes to ~/.config --- src/tint2conf/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tint2conf/main.c b/src/tint2conf/main.c index 065f275..aad311e 100644 --- a/src/tint2conf/main.c +++ b/src/tint2conf/main.c @@ -524,6 +524,7 @@ static void viewRowActivated(GtkTreeView *tree_view, GtkTreePath *path, GtkTreeV // ====== Theme load/reload ====== +#if 0 static void copy_default_themes() { gchar *path_home = g_build_filename(g_get_user_config_dir(), "tint2", "tint2rc", NULL); @@ -569,10 +570,14 @@ static void copy_default_themes() g_free(path_tint2); } } +#endif static void load_all_themes() { + // We don't do this anymore since it has proven unpopular... +#if 0 copy_default_themes(); +#endif gtk_list_store_clear(GTK_LIST_STORE(g_store));