From 290ddc1feab91ba6bbc2eba78c698f2b3ba2b33a Mon Sep 17 00:00:00 2001 From: o9000 Date: Sat, 4 Jul 2015 08:39:46 +0200 Subject: [PATCH] tint2conf: fix launcher_apps_dir --- src/tint2conf/properties_rw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tint2conf/properties_rw.c b/src/tint2conf/properties_rw.c index ee01652..9b4cdb6 100644 --- a/src/tint2conf/properties_rw.c +++ b/src/tint2conf/properties_rw.c @@ -511,7 +511,7 @@ void config_write_launcher(FILE *fp) g_strstrip(dir); if (strlen(dir) > 0) { char *contracted = contract_tilde(dir); - fprintf(fp, "launcher_item_app = %s\n", contracted); + fprintf(fp, "launcher_apps_dir = %s\n", contracted); free(contracted); } }