├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── bluetooth ├── LICENSE ├── Makefile ├── README.md ├── bluetooth-v0.2.1-universal.tar.gz ├── init.lua └── internal.m ├── cgsdebug ├── LICENSE ├── Makefile ├── README.md ├── cgsdebug.h ├── init.lua └── internal.m ├── coredock ├── LICENSE ├── Makefile ├── README.md ├── coredock-v0.1.1-universal.tar.gz ├── coredock.h ├── init.lua └── internal.m └── cursor ├── CGSConnection.h ├── CGSCursor.h ├── LICENSE ├── Makefile ├── init.lua └── internal.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/README.md -------------------------------------------------------------------------------- /bluetooth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/LICENSE -------------------------------------------------------------------------------- /bluetooth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/Makefile -------------------------------------------------------------------------------- /bluetooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/README.md -------------------------------------------------------------------------------- /bluetooth/bluetooth-v0.2.1-universal.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/bluetooth-v0.2.1-universal.tar.gz -------------------------------------------------------------------------------- /bluetooth/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/init.lua -------------------------------------------------------------------------------- /bluetooth/internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/bluetooth/internal.m -------------------------------------------------------------------------------- /cgsdebug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/LICENSE -------------------------------------------------------------------------------- /cgsdebug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/Makefile -------------------------------------------------------------------------------- /cgsdebug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/README.md -------------------------------------------------------------------------------- /cgsdebug/cgsdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/cgsdebug.h -------------------------------------------------------------------------------- /cgsdebug/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/init.lua -------------------------------------------------------------------------------- /cgsdebug/internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cgsdebug/internal.m -------------------------------------------------------------------------------- /coredock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/LICENSE -------------------------------------------------------------------------------- /coredock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/Makefile -------------------------------------------------------------------------------- /coredock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/README.md -------------------------------------------------------------------------------- /coredock/coredock-v0.1.1-universal.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/coredock-v0.1.1-universal.tar.gz -------------------------------------------------------------------------------- /coredock/coredock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/coredock.h -------------------------------------------------------------------------------- /coredock/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/init.lua -------------------------------------------------------------------------------- /coredock/internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/coredock/internal.m -------------------------------------------------------------------------------- /cursor/CGSConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/CGSConnection.h -------------------------------------------------------------------------------- /cursor/CGSCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/CGSCursor.h -------------------------------------------------------------------------------- /cursor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/LICENSE -------------------------------------------------------------------------------- /cursor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/Makefile -------------------------------------------------------------------------------- /cursor/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/init.lua -------------------------------------------------------------------------------- /cursor/internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmagill/hammerspoon_asm.undocumented/HEAD/cursor/internal.m --------------------------------------------------------------------------------