logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

X11::Protocol::Ext::XFree86_Misc.pm - Perl module for the XFree86 Misc Extension

Author

       Jay Kominek <jay.kominek@colorado.edu>

Description

       This module is used to access miscellaneous features of XFree86 servers

Name

       X11::Protocol::Ext::XFree86_Misc.pm - Perl module for the XFree86 Misc Extension

Requests

       This extension adds several requests, called as shown below:

         $x->XF86MiscQueryVersion => ($major, $minor)

         $x->XF86MiscGetSaver($screen) => ($suspendtime, $offtime)

         $x->XF86MiscSetSaver($screen, $suspendtime, $offtime)

         $x->XF86MiscGetMouseSettings => (%settings)

         $x->XF86MiscSetMouseSettings(%settings)

         $x->XF86MiscGetKbdSettings => ($type, $rate, $delay, $servnumlock)

         $x->XF86MiscSetKbdSettings($type, $rate, $delay, $servnumlock)

See Also

perl(1), X11::Protocol

perl v5.36.0                                       2022-10-13                   Protocol::Ext::XFree86_Misc(3pm)

Symbolic Constants

       This extension adds the MouseTypes, KeyboardTypes and MouseFlags constants, with values as defined in the
       XFree86 3.3.3 source code.

Synopsis

         use X11::Protocol;
         $x = X11::Protocol->new();
         $x->init_extension('XFree86-Misc');

See Also