Skip to content

Instantly share code, notes, and snippets.

@nilsandrey
Last active February 20, 2023 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nilsandrey/cc157f23d72761510da85ba33ba5823e to your computer and use it in GitHub Desktop.
Save nilsandrey/cc157f23d72761510da85ba33ba5823e to your computer and use it in GitHub Desktop.
Autohotkey hotkeys
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a semicolon, such as this one, are comments. They are not executed.
; Help:
; # Win
; ! Alt
; ^ Ctrl
; + Shift
; < Izquiero del siguiente
; > Derecho del siguiente
:*:]d:: ; This hotstring replaces "]d" with the current date and time via the commands below.
FormatTime, CurrentDateTime,, yyyy-MM-dd ; It will look like 9/1/2005 3:53 PM
SendInput %CurrentDateTime%
return
:*:]t:: ; This hotstring replaces "]d" with the current date and time via the commands below.
FormatTime, CurrentDateTime,, hh:mm tt ;g It will look like 9/1/2005 3:53 PM
SendInput %CurrentDateTime%
return
^!+r::Reload ; Reload this scripts on AutoHotkey
#b::Run ::{645ff040-5081-101b-9f08-00aa002f954e} ; Open Recycle Bin
; CTRL + WIN + T : Set active window as always on top
;+#T:: Winset, Alwaysontop, , A ; Not used anymore since using the one from Powertoys.
; ALT + WIN + 1 : Set active windows transparent
#!1:: WinSet, Transparent, 150, A
; ALT + WIN + 2 : Set active windows not transparent
#!2:: WinSet, Transparent, OFF, A
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment