diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-11-07 16:44:30 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-11-07 16:44:30 +0100 |
commit | f1d41ee79a9e5abaeadaf1b9ef88a2561eb8d832 (patch) | |
tree | 154d2c484b18221dda4a22b9581911cbd747cc2f /src/options.c | |
parent | e0e3deaca9201498d590879222b582e2c30ef3d5 (diff) | |
parent | 8401448521221f38dfa0674c236ae99dde575538 (diff) |
Merge branch 'Ferada-x11-properties'
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; } |