I've just upgraded from Ubuntu 16.04 LTS to Ubuntu 17.10. I was a fan of Unity desktop environment but after upgrading, I saw that GNOME is also a nice one ('cause it is also very similar to Unity). But there is one thing that makes me uneasy is that Application Launcher is in the bottom. Can't I move it to top-left corner (as it was in Unity)?
Asked
Active
Viewed 2,561 times
2 Answers
5
Open Terminal and run
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true
To move it back to the bottom run
gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top false
pomsky
- 70,557
-2
It may be a difficult task to move the application launcher to top. Instead, you can install Unity to your system. Here is how:
Install Unity by executing this in terminal:
sudo apt install unityReboot your system.
- Select "Unity" as desktop environment (by clicking the little cog-wheel beside the sign-in button).
- Log in by typing in your password.
Done. You can now see that Unity is installed and you also got the application launcher in the top-left of the screen.
Wraith
- 913