Not sure of the terminology here, but most of my popup dialogs (see screenshot below) are attached to the window title and cannot be moved. If the parent window is moved, the popup moves with it. Is there a way to get rid of this and have all popup dialogs be opened as movable windows?
Ubuntu 17.10+ with GNOME Shell
Ubuntu 11.10 with Cinnamon
I found a much easier solution. Actually you can configure it with the GNOME Tweaks (previously known as "GNOME Tweak Tool"):
Just disable "Attached modal dialogs" under "Windows".
Just for those that was unable to solve this, here is what I did to make my dialogs moveable.
I used dconf-editor which can be easily installed by:
sudo apt-get install dconf-editor
dconf-editor
false
Or everything in one line without installing dconf-editor:
dconf write /org/gnome/shell/overrides/attach-modal-dialogs false
dconf write /org/gnome/shell/overrides/attach-modal-dialogs true
Using Ubuntu 12.04 BTW.
For GNOME Shell
You can disable it in gnome-shell with a single command in the terminal. Open it with Ctrl + Alt + T shortcut and use the command below:
You will get rid of that popup attachment.
On older versions of GNOME Shell was under
org.gnome.shell.overrides
, probably since this issue.For Cinnamon
To disable the same on cinnamon, you need this command
You can use gconf-editor to do the same thing. Install it with
sudo apt-get install gconf-editor
command.The "design decision" is based on how macOS does it. It solves the problems with modal dialogs popping up without seeing to which program they belong to. The dialog should provide enough information to make your choice.
However, at least for gnome-shell you can change this behavior with
This is by design in Cinnamon, as well as in gnome shell
This feature is for arranging Modal Dialogs within their parent window, and can be disabled gnome shell by the use of
gconftool
. It can also be disabled in cinnamon.This feature has also been seen in Mac OSX
This worked for me on Gnome 3.30.2 to allow detaching dialogs:
or to re-attach them:
and, to get the current setting:
On my Ubuntu 12.04 with Cinnamon, I used the gconf-editor method, but the path was org -> cinnamon -> overrides -> attach-modal-dialogs
Cinnamon 4.8.4:
Cinnamon settings > Windows > Tab Behavior > Groupbox Window focus > Attach dialog windows…
I found a link with a way to fix this, this method is outdated in newer releases and gsettings should be used instead.