You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
707 B

--- src/config.c
+++ src/config.c
@@ -27,7 +27,7 @@
#include "ccs-private.h"
-#define SETTINGPATH "compiz/compizconfig"
+#define SETTINGPATH "compiz/compizconfig-trinity"
static char*
getConfigFileName (void)
@@ -124,12 +124,12 @@
/* check if the global config file exists - if it doesn't, exit
to avoid it being created by ccsIniOpen */
- fp = fopen (SYSCONFDIR "/compizconfig/config", "r");
+ fp = fopen (SYSCONFDIR "/compizconfig-trinity/config", "r");
if (!fp)
return FALSE;
fclose (fp);
- iniFile = ccsIniOpen (SYSCONFDIR "/compizconfig/config");
+ iniFile = ccsIniOpen (SYSCONFDIR "/compizconfig-trinity/config");
if (!iniFile)
return FALSE;