Replies: 1 comment 1 reply
-
AFAIK, notifications in many desktop environment do not support custom coordinates.
There is also Example script: const text = 'Some message!';
const pos = pointerPosition();
dialog('.x', pos[0], '.y', pos[1], '.label', text); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to display a notification at the mouse pointer location?
Something like a tooltip..
I tried with the
notification()
function but it seems to have no '.x' or '.y' or similar coordinate attributes I could use to position it..The only function that does something almost similar is
menuItems()
but that one has interactive item selection requirements..Idea is to just notify something to the user, but at his mouse pointer location.. screens are getting too big nowadays.. :)
Any suggestions are welcome, thanks!
Kr,
tent:wq
Beta Was this translation helpful? Give feedback.
All reactions