Skip to content

Instantly share code, notes, and snippets.

@dreamalligator
Created April 25, 2014 18:43
Show Gist options
  • Save dreamalligator/11299214 to your computer and use it in GitHub Desktop.
Save dreamalligator/11299214 to your computer and use it in GitHub Desktop.
A basic Autohotkey script to make windows always on top..
; Always on Top
; https://gist.github.com/digitalvapor
; press CTRL+Space to toggle a window to always on top.
; Winset: http://ahkscript.org/docs/commands/WinSet.htm
; WinSet, Attribute, Value [, WinTitle, WinText, ExcludeTitle, ExcludeText]
; If you are going to make another window on-top that was 'ran as admin', then you'll want to run your autohotkey script as admin too.
^SPACE:: Winset, AlwaysOnTop, Toggle, A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment