diff options
Diffstat (limited to 'AutoHotkey/hotkeys.ahk')
-rw-r--r-- | AutoHotkey/hotkeys.ahk | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/AutoHotkey/hotkeys.ahk b/AutoHotkey/hotkeys.ahk index 5454338..a54eb30 100644 --- a/AutoHotkey/hotkeys.ahk +++ b/AutoHotkey/hotkeys.ahk @@ -3,13 +3,14 @@ UserPath := EnvGet("USERPROFILE") syncPath := EnvGet("SYNC")
DetectHiddenWindows true
#c::Send "!{F4}" ; Remap Win+C to Alt+F4 (close window)
-#;::Send "^{Space}" ; Remap Win+; to Ctrl+Space
-#u::Send "^u" ; Remap Win+; to Ctrl+Space
+CapsLock & l::Send "^{Space}" ; Remap Win+; to Ctrl+Space
+CapsLock & u::Send "^u" ; Remap Win+; to Ctrl+u
+CapsLock & i::Send "{Tab}" ; Remap Win+; to Ctrl+u
#SuspendExempt
^!o::Suspend ; Ctrl+Alt+o
#SuspendExempt False
;Windows Terminal
-#,::
+CapsLock & j::
{
; Check if Windows Terminal is running
if WinExist("ahk_exe WindowsTerminal.exe" )
@@ -33,7 +34,7 @@ DetectHiddenWindows true }
;Emacs
-#.::
+CapsLock & k::
{
; Check if Emacs is running
@@ -57,7 +58,7 @@ DetectHiddenWindows true }
}
;Obsidian
-#n::
+CapsLock & n::
{
; Check if Obsidian is running
@@ -81,7 +82,7 @@ DetectHiddenWindows true }
}
;Zotero
-#o::
+CapsLock & o::
{
; Check if Zotero is running
@@ -105,7 +106,7 @@ DetectHiddenWindows true }
}
;Telegram
-#/::
+CapsLock & t::
{
; Check if Telegram is running
@@ -125,7 +126,7 @@ DetectHiddenWindows true }
;Browser
-#i::
+CapsLock & r::
{
; Check if Browser is running
@@ -149,7 +150,7 @@ DetectHiddenWindows true }
}
;Audacious
-#m::
+CapsLock & m::
{
; Check if Audacious is running
@@ -173,14 +174,14 @@ DetectHiddenWindows true }
}
;Bookmark Finder
-#k::
+CapsLock & f::
{
; Run the batch file
Run(syncPath . "\Repos\Windows\Batch_tools\bookmarkfinder\bookmarkfinder.bat")
}
;AI
-#p::
+CapsLock & h::
{
; Check if AI is running
|