[Pluto-help] bloc Num

Andrea[Debian] mail_linux a libero.it
Sab 22 Feb 2003 19:36:47 CET


On Fri, 2003-02-21 at 09:26, Enzo wrote:
> ciao raga, come posso fare, affichè il tasto Bloc Num, a destra della 
> tastiera, si attiviti all'avvio? in modo tale che quando piggio il tasto 6 
> (ed esempio), il cursore digiti 6 e non si sposti invece a destra
> ciao
> Enzo

Io x accendere il numlock all'avvio di X ho dovuto compilare il seguente
programma in C con la riga di comando : 

gcc numlock.c -o numlock -lX11 -lXtst -I/usr/X11R6/include
-L/usr/X11R6/li


/////////////////////////////////////////////

/* numlock.c */
#include <X11/extensions/XTest.h>
#include <X11/keysym.h>

int main()
    {
    Display* disp = XOpenDisplay( NULL );
    if( disp == NULL )
        return 1;
    XTestFakeKeyEvent( disp, XKeysymToKeycode( disp,
    XK_Num_Lock ),
True, CurrentTime );
    XTestFakeKeyEvent( disp, XKeysymToKeycode( disp,
    XK_Num_Lock ),
False, CurrentTime );
    XCloseDisplay( disp );
    return 0;
}


//////////////////////////////////////////////



-- 
	JabbeR : andrea a amessage.de
	ICQ : 48431218

Look around at this world we've made
Equality our stock in trade
Come and join the Brotherhood of Man
Oh, what a nice, contented world
Let the banners be unfurled
Hold the Red Star proudly high in hand

--




More information about the pluto-help mailing list