├── .gitattributes ├── .mailmap ├── LICENSE ├── MouseToys.ahk ├── MouseToysModule.ahk ├── README.md └── hotkeys ├── accelerated-scroll-hotkeys.ahk ├── individual-hotkeys ├── accelerated-scroll-main.ahk ├── accelerated-scroll-toggle.ahk ├── accelerated-scroll-use-user-setting.ahk ├── ahk-utils │ ├── can-redo-with-ctrl-y.ahk │ ├── control-class-nn-focused.ahk │ ├── default-settings.ahk │ ├── get-selected.ahk │ └── script-info.ahk ├── mouse-lib │ ├── accelerated-scroll-show-user-setting.ahk │ ├── fix-x1-shortcuts.ahk │ ├── fix-x2-shortcuts.ahk │ ├── mouse-functions.ahk │ ├── mouse-globals.ahk │ ├── restore-and-drag-win-functions.ahk │ ├── user-settings-path.ahk │ └── user-settings.ini ├── x1l-send-enter-or-delete.ahk ├── x1lm-screenshot.ahk ├── x1m-restore-and-drag-win.ahk ├── x1mr-close-win.ahk ├── x1mw-min-or-maximize-win.ahk ├── x1rl-play-pause.ahk ├── x1rw-change-volume.ahk ├── x1w-cycle-windows-order-used.ahk ├── x2l-refresh-page.ahk ├── x2lm-duplicate-page.ahk ├── x2lr-paste-and-go.ahk ├── x2lw-zoom-in-or-out.ahk ├── x2m-open-link-in-new-active-tab.ahk ├── x2r-close-or-reopen-tab.ahk ├── x2rw-cycle-tabs-order-used.ahk └── x2w-go-to-adjacent-tab.ahk ├── x1-win-and-general-hotkeys.ahk └── x2-tab-and-page-hotkeys.ahk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/.gitattributes -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/.mailmap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/LICENSE -------------------------------------------------------------------------------- /MouseToys.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/MouseToys.ahk -------------------------------------------------------------------------------- /MouseToysModule.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/MouseToysModule.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/README.md -------------------------------------------------------------------------------- /hotkeys/accelerated-scroll-hotkeys.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/accelerated-scroll-hotkeys.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/accelerated-scroll-main.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/accelerated-scroll-main.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/accelerated-scroll-toggle.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/accelerated-scroll-toggle.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/accelerated-scroll-use-user-setting.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/accelerated-scroll-use-user-setting.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/ahk-utils/can-redo-with-ctrl-y.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/ahk-utils/can-redo-with-ctrl-y.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/ahk-utils/control-class-nn-focused.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/ahk-utils/control-class-nn-focused.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/ahk-utils/default-settings.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/ahk-utils/default-settings.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/ahk-utils/get-selected.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/ahk-utils/get-selected.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/ahk-utils/script-info.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/ahk-utils/script-info.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/accelerated-scroll-show-user-setting.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/accelerated-scroll-show-user-setting.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/fix-x1-shortcuts.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/fix-x1-shortcuts.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/fix-x2-shortcuts.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/fix-x2-shortcuts.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/mouse-functions.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/mouse-functions.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/mouse-globals.ahk: -------------------------------------------------------------------------------- 1 | MouseWinIsMoving := false 2 | -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/restore-and-drag-win-functions.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/restore-and-drag-win-functions.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/user-settings-path.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/user-settings-path.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/mouse-lib/user-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/mouse-lib/user-settings.ini -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1l-send-enter-or-delete.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1l-send-enter-or-delete.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1lm-screenshot.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1lm-screenshot.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1m-restore-and-drag-win.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1m-restore-and-drag-win.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1mr-close-win.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1mr-close-win.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1mw-min-or-maximize-win.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1mw-min-or-maximize-win.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1rl-play-pause.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1rl-play-pause.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1rw-change-volume.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1rw-change-volume.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x1w-cycle-windows-order-used.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x1w-cycle-windows-order-used.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2l-refresh-page.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2l-refresh-page.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2lm-duplicate-page.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2lm-duplicate-page.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2lr-paste-and-go.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2lr-paste-and-go.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2lw-zoom-in-or-out.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2lw-zoom-in-or-out.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2m-open-link-in-new-active-tab.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2m-open-link-in-new-active-tab.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2r-close-or-reopen-tab.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2r-close-or-reopen-tab.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2rw-cycle-tabs-order-used.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2rw-cycle-tabs-order-used.ahk -------------------------------------------------------------------------------- /hotkeys/individual-hotkeys/x2w-go-to-adjacent-tab.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/individual-hotkeys/x2w-go-to-adjacent-tab.ahk -------------------------------------------------------------------------------- /hotkeys/x1-win-and-general-hotkeys.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/x1-win-and-general-hotkeys.ahk -------------------------------------------------------------------------------- /hotkeys/x2-tab-and-page-hotkeys.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachpoblete/MouseToys/HEAD/hotkeys/x2-tab-and-page-hotkeys.ahk --------------------------------------------------------------------------------