Pasting current date on global hotkey only if specific apps have the focus #1647
Answered
by
hluk
Gitoffthelawn
asked this question in
Q&A
-
I would like to paste the current date on global hotkey only if specific apps have the focus (for example, How can this be accomplished? |
Beta Was this translation helpful? Give feedback.
Answered by
hluk
Apr 30, 2021
Replies: 1 comment 5 replies
-
You can use currentWindowTitle(). if (/Konsole$/.test(currentWindowTitle())) {
// Do something if a "Konsole" window has focus.
} |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
Gitoffthelawn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use currentWindowTitle().