How can i hide too many instances? #156
-
|
Beta Was this translation helpful? Give feedback.
Answered by
spyoungtech
Jun 16, 2022
Replies: 2 comments 2 replies
-
You can add the from ahk import AHK
from ahk.directives import NoTrayIcon
ahk = AHK(directives=[NoTrayIcon]) Also note that you may see multiple icons even if only one instance is running. If you mouse over the icons, the extras will probably disappear. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
spyoungtech
-
V1 is now released and will only create 1 process to handle all command invocations by default (similar to daemon mode in v0) -- directives are also now supported. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add the
NoTrayIcon
directive to hide the tray icon altogether.Also note that you may see multiple icons even if only one instance is running. If you mouse over the icons, the extras will probably disappear.