Check out our Monthly Survey Page to see what our users are running.
Autokey "new script"
Spirimint Jan 15, 2020
Hey, i hope I'm in the right section.

I want to change some buttons for one game (settler 7). The buttons to rotate the camera are "end" and "del". It so uncomfortable so i want to change the to "q" and "e"

To do this i found the programm " autokey".

I want to make a script. But its just not working. Is there any website, to learn scripting for autokey?

Or maybe an even easier solution?

Last edited by Spirimint on 15 January 2020 at 10:59 am UTC
Salvatos Jan 15, 2020
I haven’t tried scripting with AutoKey (I only use it for string replacement), but they have a wiki on github if it helps. I got something working based on this sample: https://github.com/autokey/autokey/wiki/Scripting#persistent-value

Chances are your distribution or desktop environment has a GUI tool for this somewhere, but if not, you could write a pretty simple script and have Autokey run it when you use your chosen shortcut. You can search for "key swapping" or "key remapping" and find plenty of tutorials. First, you want to run xmodmap -pk to figure out the right codes for your keys. You’re looking for the number code (KeyCode Value) and the name of the key (KeySym Name). Then, using xmodmap -e "keycode 52 = e" && xmodmap -e "keycode 26 = z" for example will switch the values for E (normally 26 on my keyboard) and Z (normally 52). Making Autokey run that for you would look like this:

if store.get_value("runs") == 1:
    output = system.exec_command('xmodmap -e "keycode 52 = e" && xmodmap -e "keycode 26 = z"') 
    store.set_value("runs", 0)
else: 
    output = system.exec_command('xmodmap -e "keycode 52 = z" && xmodmap -e "keycode 26 = e"')
    store.set_value("runs", 1)


The condition makes it so that each time you execute that shortcut, it will alternate states, so you could run it once before you play, then a second time when you’re done to return to normal. I believe the changes would revert anyway at the end of your user session if you forget to turn it off.

Hope that helps!

Last edited by Salvatos on 15 January 2020 at 5:20 pm UTC
Spirimint Jan 15, 2020
This is awesome! I managed to make it with

xmodmap -e "keycode 26 = Delete"
xmodmap -e "keycode 115 = e"
xmodmap -e "keycode 24 = End"
xmodmap -e "keycode 119 = q"


and after i reboot my Os everything is normal again!!!

This is sooo good!
catbox_fugue Feb 25, 2020
Quoting: SpirimintThis is awesome! I managed to make it with

xmodmap -e "keycode 26 = Delete"
xmodmap -e "keycode 115 = e"
xmodmap -e "keycode 24 = End"
xmodmap -e "keycode 119 = q"


and after i reboot my Os everything is normal again!!!

This is sooo good!

im not in favor of rebooting to revert settings
perhaps create another script to revert so you dont need to reboot.

or in the same script, run the program in the middle and after end of the program run the second part of the script to revert
so it becomes an all in one experience (one step process)
While you're here, please consider supporting GamingOnLinux on:

Reward Tiers: Patreon. Plain Donations: PayPal.

This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!

You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register


Or login with...
Sign in with Steam Sign in with Google
Social logins require cookies to stay logged in.