Whenever I use my shortcut to open the home folder it's always positioned at the bottom left of my screen as shown below.
How can I open it in such a way that it would pop up in the center like this?
Whenever I use my shortcut to open the home folder it's always positioned at the bottom left of my screen as shown below.
How can I open it in such a way that it would pop up in the center like this?
To make sure the window always appears on the same poissition, create a shortcut to get it done:
Install xdotool
, to position the window:
sudo apt install xdotool
Add the following command to a keyboard shortcut:
/bin/bash -c "nautilus ~ && sleep 0.5 && xdotool getactivewindow windowmove 300 300"
Where you need to replace 300 300
by the actual position (x/y) where you want the window to appear: choose: System Settings > "Keyboard" > "Shortcuts" > "Custom Shortcuts". Click the "+" and add the command above to a shortcut you like.
This works nicely, but there is a small chance that if your system is heavily occupied, the window will not appear in time so the xdotool
command will run in vain. Writing a separate script to prevent this from happening once a year seems overkill though in this situation.
Window placement is handled by compiz
in Unity and to fine control it's behaviour, you need to install ccsm
or compizconfig-settings-manager.
Install it with this command
sudo apt-get install compizconfig-settings-manager
Open it and go to Place windows plugin page. Under the section Placement mode select Centered to have the desired effect.
The default selection is smart I think. You can also try Cascade which is the default case in Windows systems afaik.
ccsm
and change how the window is placed? – diamondburned Apr 02 '17 at 11:31xdotool
andccsm
? Either tool is not in default Ubuntu installation, so "not everyone will want to install ccsm for that" isn't a good argument in this case - user still has to install something. On the other hand,ccsm
has advantage in the fact that the tool is specific for Ubuntu, so it would be a far better fit for a solution thanxdotool
– Sergiy Kolodyazhnyy Apr 03 '17 at 13:28ccsm
adding processor load is empty. I personally run multiple compiz pluginz and never there's been high usage from acompiz
process. I don't see what you mean by the fact thatccsm
is "sensitive" either. There's plenty of other posts which ask about window placement, which also mentionccsm
's plugin, which testifies to the fact that people use it perfectly fine without issues.xdotool
doesn't have any issues either, but I don't see your reason to attackccsm
. – Sergiy Kolodyazhnyy Apr 03 '17 at 17:34