The more I use #Espanso the more I like it. Still a long way to go to be as powerful as #AutoHotKey, but I don't think it ever could be due to MacOS restrictions. Meh. I still like it. https://espanso.org
Espanso - A Privacy-first, Cross-platform Text Expander

@dhry
Having used AutoHotKey heavily for over a decade at work, I agree. I was very pleased to discover Espanso for my home Linux machine, and I no longer need AHK's Window and Form controls now.

@smeech I still need them. I know that Mac apps are able to control window size - Raycast, Moom, Rectangle and so on. What I want is to constantly monitor a particular window, and when that window opens, or is moved, it will automatically "shove" it back to the location, and resize it to the dimensions, that you have programmed. Persistent AHK example:

Resize and move Bitwarden Chrome Options Window
IfWinExist, Bitwarden,,ahk_class Chrome_WidgetWin_1
{ WinMove,,,1859,158,550,1175
}

@dhry
Yes, AHK is good at that sort of stuff. On the rare occasion I need such a facility nowadays I have to use a script with `wmctrl` commands or some-such.