(just documenting this - self-answer to follow)
I am using the stickynotes
applet in Ubuntu Natty for notes. I would occasionally like these notes to stay "always on top", but I cannot find a setting for anything like that (pic from here):
Is it at all possible to somehow force a stickynotes
note to stay always on top?
Yup, it is possible - got the answer thanks to this post: Application started in shell automatically "always on top" / Desktop / Xfce Forums; one can use
wmctrl
for that.First, in terminal, use
wmctrl
to obtain a listing of currently active windows:The "2013-03-29" is the title of my
stickynotes
note window; then one can just run this command, in order to force that particular note window to stay on top:Note the use of
-i
switch, to "Interpret window arguments (<WIN>) as a numeric value rather than a string name for the window.". Also, this toggles the "always on top" property for the window; so if you'd like to turn the "always on top" off - simply run the same above command again.Note that if
stickynotes
is set up to "Put notes on all workspaces"; then the "always on top" setting will be valid for all workspaces (although you may have to click through other windows at first, to have the window "understand" it should be "always on top").