diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-01-18 10:24:19 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-01-18 12:27:47 +0100 |
commit | 1eeeaefecb634ea734059685648c058dd600bcae (patch) | |
tree | c03f7dab7aa64179f295ebb83e0d4bdbdb7b5e67 /fbiconfig.c | |
parent | 1e49f9371f39475be7d2a3a9be2994ce5d27870b (diff) | |
download | fbida-1eeeaefecb634ea734059685648c058dd600bcae.tar.gz |
kbd: experimental libinput support
Diffstat (limited to 'fbiconfig.c')
-rw-r--r-- | fbiconfig.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fbiconfig.c b/fbiconfig.c index 44e2321..48c0fca 100644 --- a/fbiconfig.c +++ b/fbiconfig.c @@ -182,6 +182,11 @@ struct cfg_cmdline fbi_cfg[] = { .option = { O_VIDEO_MODE }, .needsarg = 1, .desc = "use video mode <arg> (from /etc/fb.modes)", + },{ + .cmdline = "libinput", + .option = { O_LIBINPUT }, + .yesno = 1, + .desc = "use libinput (experimental)", },{ /* end of list */ @@ -250,6 +255,11 @@ struct cfg_cmdline fbpdf_cfg[] = { .needsarg = 1, .desc = "use video mode <arg> (from /etc/fb.modes)", },{ + .cmdline = "libinput", + .option = { O_LIBINPUT }, + .yesno = 1, + .desc = "use libinput (experimental)", + },{ /* end of list */ } }; |