14

In Ubuntu when you right click on a window, you get the option to keep it 'Always on Top'. This is incredibly useful sometimes when I want a window to take up the whole desktop (e.g. Internet Browser) but still want to see the information from another smaller window (e.g. A video/film). Using the Windows 7 snap to edge feature is very useful and I use it a lot but its not always what you want.

I find it annoying how some programs in Windows such as Media Player and Task Manager for example have Always on Top options and everything else doesnt. There must be some software to fix this.

An example of the feature in Ubuntu:

enter image description here

Gareth
  • 19,080
Connor W
  • 4,021

4 Answers4

10

This is a GNOME-specific feature. Windows doesn't implement anything similar by default, but you can get this functionality via software such as DeskPins:

alt text

My favorite method for most things is to use hotkeys. With Autohotkey installed, you can use this script to toggle windows as "always on top":

^!o::WinSet, AlwaysOnTop, Toggle,A

This will allow you to use Ctrl + Alt + o to set and unset the current active window as "always on top". See the WinSet function for more info.

Gareth
  • 19,080
5

Some windows programs have it added as a 'feature' but the default windows framework does not support it.

It is sometimes called 'pin'.

Third party apps can add this functionality if you wish.

For example, PowerMenu or DeskPins (As pointed out by John)

Disclaimer: I have not tried the linked application.

Dan McGrath
  • 3,006
2

The direct download link is here:

http://dl.dropbox.com/u/149566/Downloads/always-on-top.zip

I simply add the always-on-top.exe file to the startup folder, and then you just press "ctrl + space" for the selected window to stay on top. Deactivation is just pressing ctrl + space again.

The program is written in Autohotkey with a single line of code:

^SPACE::  Winset, Alwaysontop, , A
slhck
  • 235,242
zarnaik
  • 21
1

This functionality is not available in Windows, see this excellent Microsoft blog for an explanation.

RegDwight
  • 127