Commit 476f50ab authored by Felix Crux's avatar Felix Crux
Browse files

Adds an option --bg-no-bgfile that prevents the writing of a ~/.fehbg file.

parent ed119532
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -667,8 +667,8 @@ be printed.
.Sh BACKGROUND SETTING
.
.Nm
can also be used as a background setter.  It will store the command line
necessary to set the background in
can also be used as a background setter.  Unless you pass the --bg-no-bgfile
option, it will store the command line necessary to set the background in
.Pa ~/.fehbg ,
so to have your background restored everytime you start X, you can add
.Qq eval $(cat ~/.fehbg)
@@ -726,6 +726,12 @@ Tile
.Pq repeat
the image in case it is too small for the screen
.
.It Cm --bg-no-bgfile
.
Do not write a
.Pa ~/.fehbg
file
.
.El
.
.
+1 −0
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@ OPTIONS
                           fill the whole background, but the images' aspect
                           ratio may not be preserved
     --bg-tile FILE        Set FILE as tiled desktop background
     --bg-no-bgfile        Do not write a ~/.fehbg file
 -C, --fontpath PATH       Specify an extra directory to look in for fonts,
                           can be used multiple times to add multiple paths.
 -M, --menu-font FONT      Use FONT for the font in menus.
+10 −0
Original line number Diff line number Diff line
@@ -390,6 +390,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
		{"thumb-redraw"  , 1, 0, 'J'},
		{"info"          , 1, 0, 234},
		{"force-aliasing", 0, 0, 235},
		{"bg-no-bgfile"  , 0, 0, 236},

		{0, 0, 0, 0}
	};
@@ -703,6 +704,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
		case 235:
			opt.force_aliasing = 1;
			break;
		case 236:
			opt.no_bgfile = 1;
			break;
		default:
			break;
		}
@@ -760,6 +764,12 @@ static void check_options(void)
		eprintf("You cannot combine --loadable with --unloadable");
	}

	if (opt.no_bgfile && !opt.bgmode) {
		weprintf("The --no-bg-file option is meaningless unless you\n"
				"are setting a background wallpaper image.\n"
				"It is being ignored.");
	}

	return;
}

+1 −0
Original line number Diff line number Diff line
@@ -68,6 +68,7 @@ struct __fehoptions {
	unsigned char hold_actions[10];
	unsigned char text_bg;
	unsigned char image_bg;
	unsigned char no_bgfile;

	char *output_file;
	char *output_dir;
+1 −1
Original line number Diff line number Diff line
@@ -395,7 +395,7 @@ void feh_wm_set_bg(char *fil, Imlib_Image im, int centered, int scaled,
			fehbg = estrjoin(" ", "feh --bg-tile", filbuf, NULL);
		}

		if (fehbg) {
		if (fehbg && !opt.no_bgfile) {
			home = getenv("HOME");
			if (home) {
				FILE *fp;