diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-04-26 17:16:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-04-26 17:16:10 +0200 |
commit | bd3aa36a5ab8d8d221d64f15202525dddb149365 (patch) | |
tree | 0b4983caa31315634d7c1cf695d048e288e4013b /src/options.c | |
parent | b4c95797ed5f88deacbda18d9364fdbeaf2bc100 (diff) |
Improve '.fehrc -> .config/feh/themes' warning message
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/options.c b/src/options.c index 58af491..e7be48e 100644 --- a/src/options.c +++ b/src/options.c @@ -166,8 +166,10 @@ static void feh_load_options_for_theme(char *theme) free(rcpath); if (!fp && ((fp = fopen(oldrcpath, "r")) != NULL)) - weprintf("the config is now read from .config/feh/themes, " - "please update your path!"); + weprintf("The theme config file was moved from ~/.fehrc to " + "~/.config/feh/themes. Run\n" + " mkdir -p ~/.config/feh; mv ~/.fehrc ~/.config/feh/themes\n" + "to fix this."); free(oldrcpath); |