From a91bbec93c5e0e1ca8086cfba904410e1dd620a9 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 13 Mar 2022 17:21:18 -0500 Subject: [PATCH] Windows - Adds new Lockscreen hotkey, lowercase hotkey & taskview --- windows/kinto.ahk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index 2f99d04..39c9b95 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -215,6 +215,15 @@ GroupAdd, intellij, ahk_exe idea64.exe ; +F6::Send {LCtrl down}{LWin down}{right}{LCtrl up}{LWin up} ; Comment out on host machine #IfWinNotActive ahk_group remotes + ; Lock Workstation + #^q::DllCall("LockWorkStation") + ; Conflicts w/ Win-L so will use Ctrl-Shift-L as Ctrl-L replacement + ; Helpful for Sublime text lowercasing & VSCode + ^+l::Send ^{l} + ; Adds Task View to Ctrl-Cmd-Down + #^Down:: + Run, "C:\Windows\explorer.exe" "shell:::{3080F90E-D7AD-11D9-BD98-0000947B0257}" + return ; wordwise support ^Up::Send ^{Home} ^+Up::Send ^+{Home}