The question says it all really, is there a command that emulates Always On Top
that you get by right clicking on window borders?
Asked
Active
Viewed 2,619 times
7

Logan
- 431
1 Answers
8
- Install
wmctrl
- Open a terminal and type
wmctrl -l
. You will see a list of windows and processes. - Type
wmctrl -i -r 0x01c00267 -b add,above
. Replace0x01c00267
with the window number you want to be on top.

Ed Villegas
- 3,413
-
1Instead of using
-i
for window id, we can also use a string that would match the title of the windowwmctrl -r erminal -b toggle,fullscreen
Instead of "Terminal", oruser@host....
we can use a partial string (I used "erminal" in the example) andwmctrl
would try to match it.The first one it matches becomes the subject.
– Logan Dec 27 '12 at 03:43
Always On Top
is a feature specifically for the GUI (windows).. – Karthik T Dec 27 '12 at 02:55