@tsonfeir But Linux does not have AutoHotkey. This is the biggest deal-breaker for me by far. AutoKey seems be the closest thing, but it’s such a massive pain to even try to use by comparison.
I doesn’t have auto hotkey because for the most part, you can control Linux from the command-line without someone having to invent a new scripting language from scratch to control it.
I heavily recommend you familiarize yourself with bash and the system commands you’ll need to send key presses, move windows, spawn and kill programs, etc.
Apparently, xdotool can! I guess the next thing would be generating GUIs. I think the final issue is that this would cause quite the fragmentation given how I use the same scripts on my Windows-only work laptop… but I’ll think about this more…
An alternative is python, it can do GUIs easily, and it does have mouse-control facilités as well and it is cross plaform.
That being said generally on Linux you don’t even need to automate mouse click, as almost all of it can be controllers with straight up commands.
@tsonfeir But Linux does not have AutoHotkey. This is the biggest deal-breaker for me by far. AutoKey seems be the closest thing, but it’s such a massive pain to even try to use by comparison.
Depending on your usage, perhaps this re-implementation of AHK for Linux might be of use to you.
https://github.com/phil294/AHK_X11
Fuck me, there is no worse way automating things
I doesn’t have auto hotkey because for the most part, you can control Linux from the command-line without someone having to invent a new scripting language from scratch to control it.
I heavily recommend you familiarize yourself with bash and the system commands you’ll need to send key presses, move windows, spawn and kill programs, etc.
Hmm, thanks. Can it simulate mouse-clicks?
Apparently,
xdotool
can! I guess the next thing would be generating GUIs. I think the final issue is that this would cause quite the fragmentation given how I use the same scripts on my Windows-only work laptop… but I’ll think about this more…An alternative is python, it can do GUIs easily, and it does have mouse-control facilités as well and it is cross plaform. That being said generally on Linux you don’t even need to automate mouse click, as almost all of it can be controllers with straight up commands.