Commit f74385de authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add "--info ;cmd" to disable info display on startup (closes #142)

parent d49a455c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ git HEAD

    * Allow non-centered wallpapers using the --geometry option
      (Patch by Joel Bradshaw)
    * Add ; flag to --info (as in "--info ';echo foo'") to disable info
      display on startup

Tue, 11 Jun 2013 08:27:24 +0200  Daniel Friesel <derf+feh@finalrewind.org>

+8 −1
Original line number Diff line number Diff line
@@ -357,7 +357,7 @@ window becomes visible. Use
.Cm --preload
to get a progress bar.
.
.It Cm --info Ar commandline
.It Cm --info Oo Ar flag Oc Ns Ar commandline
.
Execute
.Ar commandline
@@ -365,6 +365,13 @@ and display its output in the bottom left corner of the image. Can be used to
display e.g. image dimensions or EXIF information.  Supports
.Sx FORMAT SPECIFIERS .
.
If
.Ar flag
is set to
.Qo ; Qc ,
the output will not be displayed by default, but has to be enabled by the
toggle_info key.
.
.It Cm -k , --keep-http
.
When viewing files using HTTP,
+4 −1
Original line number Diff line number Diff line
@@ -717,6 +717,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
			break;
		case 234:
			opt.info_cmd = estrdup(optarg);
			if (opt.info_cmd[0] == ';')
				opt.info_cmd++;
			else
				opt.draw_info = 1;
			break;
		case 235: