Created
May 23, 2020 16:50
-
-
Save Arty2/7299e83eee050e9408a8626a21caf280 to your computer and use it in GitHub Desktop.
Hide popup for Logitech Craft's crown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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