Re: Pressing keys assigned in openbox opens too many windows in Ubuntu

"D.T." <[email protected]> Sat, 10 Jun 2017 08:36:49 +0300
Newsgroups gmane.comp.window-managers.openbox
Message-ID <[email protected]>
On 08/06/17 13:36, Mikael Magnusson wrote:
> On Thu, Jun 8, 2017 at 11:59 AM,  <[email protected]> wrote:
>> Is there any way to configure key bindings in openbox so holding down a key
>> combination would not open more than one instance of a program? E.g. when I
>> have configured to use Shift + Alt + T keys to open a terminal window, if
>> holding down the keys too long time, there will be a lot of terminal windows
>> open. It should open only one terminal window and if pressing Shift + Alt +
>> T again, then it would open a second etc.
> http://cgit.mika.l3ib.org/cgit/openbox/patch/?id=ee2db440ed419891ef373584963ea5874b62f4a2
>
recompiling openbox with patches i probably the best solution.

you can also try to wrap every keyboard shortcut command in a script 
like this:


#!/bin/sh

xset r off

$@

sleep 3

xset r on

exit 0

where you would pass the complete command you want to execute.

not tested.

likely you are going to have to play with double quotes around the 
command line or "$@" or both to get it right.

you also have to decide what is an acceptable delay before you switch 
the keyboard repeat on again.

_______________________________________________
openbox mailing list
[email protected]
http://icculus.org/mailman/listinfo/openbox