From de734d41517986273f8c887f892e15b66f0936ec Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Fri, 11 Oct 2019 22:19:33 +0200 Subject: Allow setting the X11 class hint as an option. --- src/options.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/options.c') diff --git a/src/options.c b/src/options.c index 4c34b66..d3c1d52 100644 --- a/src/options.c +++ b/src/options.c @@ -430,6 +430,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) #ifdef HAVE_INOTIFY {"auto-reload" , 0, 0, 248}, #endif + {"class" , 1, 0, 249}, {0, 0, 0, 0} }; int optch = 0, cmdx = 0; @@ -823,6 +824,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) opt.auto_reload = 1; break; #endif + case 249: + opt.x11_class = estrdup(optarg); + break; default: break; } -- cgit v1.2.3