├── .gitignore ├── .idea └── vcs.xml ├── LICENSE ├── Logbook of a last successful test. Random and sporadic.txt ├── README.md ├── activeTitle2ahk sender.py ├── get-AutoKey_active_title.ahk ├── helloWorld.ahk ├── instalation tipps.md ├── read_key_title_class_from_cllipboard.ahk ├── read_key_title_class_from_cllipboard_v3.ahk ├── read_key_title_class_from_cllipboard_v4.ahk ├── read_strg_numers.ahk ├── send_key_title_class_to_cllipboard.py ├── send_key_title_class_to_cllipboard_v3.py └── working tipps.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /Logbook of a last successful test. Random and sporadic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/Logbook of a last successful test. Random and sporadic.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/README.md -------------------------------------------------------------------------------- /activeTitle2ahk sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/activeTitle2ahk sender.py -------------------------------------------------------------------------------- /get-AutoKey_active_title.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/get-AutoKey_active_title.ahk -------------------------------------------------------------------------------- /helloWorld.ahk: -------------------------------------------------------------------------------- 1 | msgBox,hello AutoHotKey4Linux -------------------------------------------------------------------------------- /instalation tipps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/instalation tipps.md -------------------------------------------------------------------------------- /read_key_title_class_from_cllipboard.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/read_key_title_class_from_cllipboard.ahk -------------------------------------------------------------------------------- /read_key_title_class_from_cllipboard_v3.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/read_key_title_class_from_cllipboard_v3.ahk -------------------------------------------------------------------------------- /read_key_title_class_from_cllipboard_v4.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/read_key_title_class_from_cllipboard_v4.ahk -------------------------------------------------------------------------------- /read_strg_numers.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/read_strg_numers.ahk -------------------------------------------------------------------------------- /send_key_title_class_to_cllipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/send_key_title_class_to_cllipboard.py -------------------------------------------------------------------------------- /send_key_title_class_to_cllipboard_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/send_key_title_class_to_cllipboard_v3.py -------------------------------------------------------------------------------- /working tipps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sl5net/AutoHotKey4Linux/HEAD/working tipps.md --------------------------------------------------------------------------------