I added the following to /root/.config/openbox/rc.xml:
<keybind key="C-A-t">
<action name="Execute">
<command>/root/my-applications/test1.sh</command>
</action>
</keybind>
The test1.sh file consists of an executable shell script which outputs ñ.
The idea being to tie the key combination to the output, so when I press C-A-t it will output an ñ. However, it doesn't work; pressing it in (for example) Geany does nothing. I have reconfigured openbox. What am I doing wrong?
X's key compose feature? Enable it then compose-key,n,~ will generate “ñ”. (The Compose key Wikipedia article has some good links at the bottom.) – manatwork Nov 14 '12 at 16:45<command>sh /root/my-applications/test1.sh</command>– pedrosaurio Nov 15 '12 at 8:50