Skip to content

Instantly share code, notes, and snippets.

@Arty2
Created May 23, 2020 16:50
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 Arty2/7299e83eee050e9408a8626a21caf280 to your computer and use it in GitHub Desktop.
Save Arty2/7299e83eee050e9408a8626a21caf280 to your computer and use it in GitHub Desktop.
Hide popup for Logitech Craft's crown.
; make Logitech craft windows transparent, restart the script and use the crown to hide it
; see https://github.com/Logitech/logi_craft_sdk/issues/31
; ← everything after this character is a comment
SetTimer, LogiOverlay, -5000 ; this timer runs once, after 5 seconds
LogiOverlay(){
If WinExist("ahk_EXE LogiOverlay.exe") {
WinClose, ahk_EXE LogiOverlay.exe ; close the window, comment to disable
; WinSet, Transparent, 20, ahk_EXE LogiOverlay.exe ; uncomment this line to change its opacity instead
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment