Is there a tool to quickly create custom keyboard layouts?
For example to achieve this: https://tex.stackexchange.com/a/86559/1871
Producing Unicode characters in secondary layers, but based on US international (Alt GR-dead keys)
This is mainly to type math in using Unicode, but keeping the default layer to be US international.
Maybe there is one prepared already that is pretty general, if so then how to install it?
This question is not about generating short-cuts in a particular application but to change the system's keyboard layout.
I think this tool might work for you although I've never used it. keyboardlayouteditor
If it doesn't work then with a little patience you can create a custom keyboard layout by yourself.
I know it's not a quick way to do it but by doing it this way you will learn something.
If you decide to do it by yourself then the only thing you need to do is edit a file located in /usr/share/x11/xkb/symbols.
Inside the folder "symbols" you will find all the keyboard layout files.
Backup the file you want to use, in your case the "us" file.
To backup the file open a terminal and type:
Now open the "us" file:
You will see something like this:
The
key <xxxx>
entries are the name of the keys and the{[]};
entries are the symbolsThe image below will show you the key codes:
Now to create your custom keyboard layout you need to replace the contents of
{[]};
with the symbol names you want.For example in order to replace the exclamation mark with the dollar symbol change the following line
to this:
After you finish editing your custom keyboard save the file and restart your computer.
In case you want to go back to your original "us" keyboard layout open a terminal and type the following:
For further reading:
Recently looking at packages I found
mathwriter input
.This, apparently in Gnome3, allows the input of mathematical characters as if it were a special language. This allows to enter symbols by typing the name of the symbol, in the screen a menu appears with options and hitting space allow to choose a match.
Relevant links:
https://launchpad.net/ubuntu/+source/ibus-table-others/1.3.5-2
https://github.com/mike-fabian/ibus-table-others
https://code.google.com/p/ibus/
I was also personally interested in being able to do this, I made a python program to do it.
Get it here: https://github.com/cuppajoeman/x11-keyboard-layout-generator
To sum it up, you can create custom layouts like this
And it generates a custom layout file which you just have to move to
/usr/share/X11/xkb/symbols
.Before you enable your new layout make sure you have set up some shortcuts to switch between them, for example I am using xfce,so I have:
Now we can switch between the math and standard layout easily.
This is not an answer to my own question but a much less invasive alternative that consists in configuring gedit for the purpose of typing unicode/special characters.
After trying some of the proposed solutions, I realized that changing the keyboard layout is an overkill. After all, I needed it only to code (mainly "string"s with unicode and math in LaTeX). So I decided that for my purpose it was better to somehow make my editor able to convert writen words into unicode characters.
My editor is
gedit
, which has a standard plugin calledSnippets
. I realized that if I put the special characters in~/.config/gedit/snippets/global.xml
I would be able to type them in any text file.I made a program that reads a table of unicode characters and a their common names and builds the snippets file. In this way I type the name of character, like
_alpha
and press TAB andα
appears. There are no key combiations or keyboard layers to remember.After the process my
~/.config/gedit/snippets/global.xml
file looks like this. Don't forget to activate the Snippet plugin.Notes:
_pi
)? This is because otherwise many snippets will conflict with the autocompletion feature. For examplepi
+TAB will not produceπ
but it will producepicture
if this word is mentioned in the document.Gnome Character Map
program.Snippets
plugin, first install thegedit plugins
package. Then go toPreferences
->Plugin
->click onSnippets
. Then, from theTools
->Manage Snippets...
menu, verify that the entries are avialable in theGlobal
group (at the top).