Skip to content

Instantly share code, notes, and snippets.

@GodfatherX64
Forked from navhaxs/menualtgr.ahk
Last active February 6, 2023 07:58
Show Gist options
  • Save GodfatherX64/5a65fcf4f7835c6f5db86de2f0f52e52 to your computer and use it in GitHub Desktop.
Save GodfatherX64/5a65fcf4f7835c6f5db86de2f0f52e52 to your computer and use it in GitHub Desktop.
;#NoTrayIcon
;#SingleInstance force
;#Persistent
;#InstallKeybdHook
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Logitech T650 mappings for Windows 10.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Requires SetPoint to be installed AND running.
;
; Comment out any conflicting hotkeys that you actually use.
; Fortunately, Logitech sends *numpad arrow keys* rather than normal arrow keys
; which aren't commonly used commonly, so we can easily override most of them without
; too much conflict with normal keyboard usage.
; Four finger swipe left ---> Virtual Desktop Switch Left
<#NumpadRight::
Send {LWin down}{LCtrl down}{Left}{LWin up}{LCtrl up}
Return
; Four finger swipe right ---> Virtual Desktop Switch Right
<#NumpadLeft::
Send {LWin down}{LCtrl down}{Right}{LWin up}{LCtrl up}
Return
; Four finger swipe up ---> Task View
; (only works when active window is NOT minimised)
<#NumpadUp::
Send {LWin down}{Tab down}{LWin up}{Tab up}
Return
; Uncomment if you want to override Win + D
; Thee finger swipe down --> Task View
; (I can't seem to catch four finger down)
;<#d::
; Send {LWin down}{Tab down}{LWin up}{Tab up}
; Return
; One finger from right edge in
; Notification Centre
<#c::
Send {LWin down}{a}{LWin up}
Return
@itsdapi
Copy link

itsdapi commented Mar 4, 2020

Nice work for the precision driver's replacement, but yeah it will be nice if it officially supported.

@rigo3t
Copy link

rigo3t commented Sep 3, 2020

I was digging through some stuff in my office drawers and found my T650, thanks for this, it works on my machine very well except for the notification center for some reason. Nevertheless, thank you!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment