How to make application windows always on top in Linux mint

gnomewindow-manager

When I open several application simultaneously, there is necessity to switch between one application to another. But when I place mouse pointer on top of window of some application, then window of other application will close immediately. I need to maintain some window always on top whether I place mouse pointer on it or not.

In Windows, I can doing this with turbo TOP, but I can not discover the same way to doing this in Linux, especially in Linux Mint.

http://www.savardsoftware.com/turbotop/

Best Answer

On Linux, with a window manager that follows the Extended Window Manager Hints (EWMH) you can do this by setting the above property.

Linux Mint Cinnameon and Mate desktop environments both incorporate elements in the stack that handle the EWMH functionality. What you can do using the window title is use the following command:

 wmctrl -r :SELECT: -b add,above

and then click in the window that you want to have at the top. You can also replace :SELECT: by a substring of a window title (this better be unique as the first match found is used).

Alternatively, at least in Cinnamon, you can right click in the title-bar of the window you want to have permanently on top, and select Always on Top

enter image description here

Related Question