Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 111638
Collapse All | Expand All

(-)api/epplet.c (-2 / +2 lines)
Lines 5497-5503 Link Here
5497
   pid_t               pid;
5497
   pid_t               pid;
5498
5498
5499
   /* make sure basic dir exists */
5499
   /* make sure basic dir exists */
5500
   Esnprintf(s, sizeof(s), "%s/.enlightenment/epplet_config", getenv("HOME"));
5500
   Esnprintf(s, sizeof(s), "%s/.e16/epplet_config", getenv("HOME"));
5501
   if (stat(s, &st) < 0)
5501
   if (stat(s, &st) < 0)
5502
     {
5502
     {
5503
	if (mkdir(s, S_IRWXU) < 0)
5503
	if (mkdir(s, S_IRWXU) < 0)
Lines 5514-5520 Link Here
5514
     }
5514
     }
5515
5515
5516
   /* make sure this epplets config dir exists */
5516
   /* make sure this epplets config dir exists */
5517
   Esnprintf(s, sizeof(s), "%s/.enlightenment/epplet_config/%s",
5517
   Esnprintf(s, sizeof(s), "%s/.e16/epplet_config/%s",
5518
	     getenv("HOME"), name);
5518
	     getenv("HOME"), name);
5519
   conf_dir = strdup(s);
5519
   conf_dir = strdup(s);
5520
   if (stat(s, &st) < 0)
5520
   if (stat(s, &st) < 0)
(-)epplets-0.7/epplets/E-Slides.c (-1 / +1 lines)
Lines 569-575 Link Here
569
569
570
  path = Epplet_query_config("image_dir");
570
  path = Epplet_query_config("image_dir");
571
  if (path == NULL) {
571
  if (path == NULL) {
572
    Esnprintf(buff, sizeof(buff), "%s/.enlightenment/backgrounds", getenv("HOME"));
572
    Esnprintf(buff, sizeof(buff), "%s/.e16/backgrounds", getenv("HOME"));
573
    path = strdup(buff);
573
    path = strdup(buff);
574
    Epplet_add_config("image_dir", buff);
574
    Epplet_add_config("image_dir", buff);
575
  } else {
575
  } else {
(-)epplets/E-UrlWatch.ABOUT/MAIN (-1 / +1 lines)
Lines 52-58 Link Here
52
that appears in there, but it is set not to by default.
52
that appears in there, but it is set not to by default.
53
53
54
So. If you load the epplet and close it, you will get a config
54
So. If you load the epplet and close it, you will get a config
55
file in ~/.enlightenment/epplet_config/E-UrlWatch/E-UrlWatch.cfg
55
file in ~/.e16/epplet_config/E-UrlWatch/E-UrlWatch.cfg
56
56
57
Edit this file to change your prefs. If you don't use TE, any other URL list
57
Edit this file to change your prefs. If you don't use TE, any other URL list
58
can be watched by editing the cfg.
58
can be watched by editing the cfg.

Return to bug 111638