Sponsored Content
Full Discussion: sticky keys enable in linux
Operating Systems Linux sticky keys enable in linux Post 302597407 by mallikarjun7777 on Friday 10th of February 2012 08:13:04 AM
Old 02-10-2012
sticky keys enable in linux

The problem is when i push button on keyboard and stay pressed i get only one letter. I want to set auto repeat of pressed character to get for example pressing a letter 'aaaaaaaaaaaaaa' instead 'a' only???
can you tell us how to enable this feature in linux????
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

arrow keys / special keys

how to use the arrow keys in shell scripting. is there any special synatax / command for this. i just want to use the arrow keys for navigation. replies appreciated raguram R (3 Replies)
Discussion started by: raguramtgr
3 Replies

2. UNIX for Dummies Questions & Answers

how do I enable ssh for RH Linux Enterprise

I am not sure how to enable SSH on my RedHat Linux Server. Do I need to install a rpm or just edit a file. Thanks in advance. (1 Reply)
Discussion started by: newbie05
1 Replies

3. Debian

How to enable and use ACL's in Linux

Hi, How to enable and use ACL's in linux. Thx, siva. (2 Replies)
Discussion started by: Sivaswami
2 Replies

4. Linux

Enable sudo for Win AD users authenticated with Linux samba winbind service

Hi everyone, I wonder if anyone ever came across the idea of unifying AD and Linux user accounts We have a Linux machine with 'samba' 'winbind' service configured to let Windows AD users to logon locally using their AD accounts and passwords. I can use 'su' to get to the local user privilege... (0 Replies)
Discussion started by: will_mike
0 Replies

5. UNIX for Advanced & Expert Users

how to enable cygwin in linux server (redHat) ?

how to enable cygwin in linux server (redHat)..... any idea? (1 Reply)
Discussion started by: crackthehit007
1 Replies

6. Solaris

Solaris 8 how do I enable and disable services? (equivalent of chkconfig on Linux)

I've successfully installed syslog-ng and chkconfig using the packages from the OpenCSW project, these packages install under /opt/csw. I now need to disable the default syslog daemon and enable the new service created by the OpenCSW package (/etc/init.d/cswsyslog_ng). Is there any good way to... (3 Replies)
Discussion started by: aussieos
3 Replies

7. Linux

Need assistance to enable more that 4GB RAM on Linux 32Bit OS.

How to enable more than 4GB RAM support on Linux 32bit OS? OS: CentOS release 5.4 (Final) Kernel version: 2.6.18-53.el5 Arch: 32Bit I got solution at Innovationframes.com • View topic - How to enable more than 4GB RAM support on Linux 32bit OS? but my question is the steps given... (5 Replies)
Discussion started by: chandranjoy
5 Replies

8. Shell Programming and Scripting

What are public keys in ssh and how do we create the public keys??

Hi All, I am having knowledge on some basics of ssh and wanted to know what are the public keys and how can we create and implement it in connecting server. Please provide the information for the above, it would be helpful for me. Thanks, Ravindra (1 Reply)
Discussion started by: ravi3cha
1 Replies

9. Ubuntu

Does anyone succesfully ported windos7 sticky note to linux

Hi, I wonder if someone successfully ported windows 7 sticky notes to linux sticky notes a like.. If any what package used.. Thanks in advance. (2 Replies)
Discussion started by: jao_madn
2 Replies

10. Linux

Linux password aging and ssh keys

Recently I have been playing with password ageing and the usage of ssh keys. I have found that if usePAM yes (default) is set in the /etc/ssh/sshd_config file then any password ageing and inactiivity can adversely affect a client with ssh keys. For example: Set PASS_MAX_DAYS to 60 in... (5 Replies)
Discussion started by: smurphy_it
5 Replies
gii_key_event(3)							GGI							  gii_key_event(3)

NAME
gii_key_event - LibGII key events SYNOPSIS
#include <ggi/events.h> typedef struct gii_key_event { COMMON_DATA; uint32_t modifiers; uint32_t sym; uint32_t label; uint32_t button; } gii_key_event; DESCRIPTION
The gii_key_event structure represents key/button events from keyboards and other devices. GENERATED EVENTS
evKeyPress The key specified in the structure is pressed. Not repeatedly produced while holding down the key. evKeyRelease A key specified in the structure is released. evKeyRepeat Makes sense when dealing with character input. A key is being held down and the character should be processed at intervals when the key is held down. The key repeat rate and the delay before repeat is unspecified and depends on the user's environment. STRUCTURE MEMBERS
modifiers Result of bitwise-or of the following flags, indicating certain shift states: o GII_MOD_SHIFT o GII_MOD_CTRL o GII_MOD_ALT o GII_MOD_META o GII_MOD_SUPER o GII_MOD_HYPER o GII_MOD_ALTGR o GII_MOD_CAPS o GII_MOD_NUM o GII_MOD_SCROLL sym The symbol of the key, which is the resultant character produced by the key. This is roughly a transformation of the label with the current modifiers. It also depends on the user's key configuration. label The actual label visible on the key in question. This is either the symbol produced when there are no modifiers or it is the most prominent symbol on that key. For example: o The numeric keys on top of the letter keys on a standard PC keyboard have label values which are the digit characters in ASCII. o The English letter keys on a keyboard are represented by A through Z in label. Although in their unshifted state these keys pro- duce lowercase letters, the keycaps are printed with uppercase by convention, so this is what LibGII returns. label can be used as a generalized, portable keycode or scancode of the key (That is, if the documentation for an applications says that something is is mapped to key y, it is, even for German keyboard, where y and z are swapped) button The button number distinguishing between the different buttons on the device. For example, on a keyboard it is a number from 0 to 127 (i.e. a scancode), on a joystick it might be 1 to 4, and on a spaceorb it will be 1 to 8. If an application is interested in what physical keys are pressed and released (most games for example), read the label field. Usually the modifiers in effect are irrelevant for these applications (however, for non-alphanumeric symbols like + and -, it is wise to check the sym field instead of label as they are accessed using shifts on some keyboard configurations). If an application wants a stream of characters (for text input), it should read the sym field. GGI KEYSYM SYSTEM
In GGI, key values are defined in ggi/keyboard.h. They are basically Unicode characters with some extensions: Keys which are not represented by codepoints in the Unicode standard (such as the numeric keypad keys) are assigned codepoints in the pri- vate range. Applications should use the GIIK_ #defines for representing these keys. These codepoints are used in label, but they can also occur in sym when the symbol is not any character (e.g. arrow keys, function keys). The GIIUC_ #defines represent normal Unicode characters. The #defines are interchangeable with their corresponding codepoint scalars and their use is optional. However, it is recommended to use them for the symbols GIIUC_BackSpace, GIIUC_Return, GIIUC_Escape and GIIUC_Delete. Important: In the LibGII system, no key is guaranteed to exist; the key values are for identification only. Particularly, applica- tions should not rely on their presence. Also, because not all keyboards are configured in the same way, applications are encour- aged to allow user configuration of the keys used and not hard-code their values. SEE ALSO
gii_event(3) libgii-1.0.x 2006-12-30 gii_key_event(3)
All times are GMT -4. The time now is 04:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy