How can we remove the launcher that come with Unity on this new Ubuntu version ?
19 Answers
In 12.04, you can go to System Settings > Appearance > Behavior and turn on autohide, then turn the sensitivity all the way down. Now the launcher will only show when you press Super.
- 14,911
Install ccsm (Compiz Config Settings Manager)
Launch ccsm and click on the "Unity Plugin"
Under "Behavior", change "Hide Launcher" to "autohide"
Change "Reveal Mode" to None.
Disable "Key to show launcher" and "Key to put focus on launcher"
*Disabling "Key to show launcher" may prevent you from accessing the dash. If you omit this part of step 5, you can access the dash, but the launcher will appear non-invasively while the dash is displayed. I don't know of any way to stop this.
Update: 12.04 does things differently, thus this may not work after 11.10.
- 1,420
In simple words: you can't. By design, the launcher is intended to stay there always. If you want to give it up, the only way to do so is to give up the entire unity interface by switching to some other DE or by switching to the classic GNOME session.
Moving the launcher to some other edge of the screen is also not implemented and wouldn't be, as per Mark's comment on a bug.
- 2,998
You could do the following:
- Install and launch the ComizConfig Settings Manger.
- Select the Ubuntu Unity Plugin.
- Set the
Hide Launcheroption to 'Autohide'. - Set the
Reveal Modeoption from 'Left' to 'None'.
That should do the trick. You may need to execute setsid unity for the changes to apply.
- 14,064
In the file /usr/share/unity-2d/shell/Shell.qml, and can be edited with the command
gksudo gedit /usr/share/unity-2d/shell/Shell.qml
The way to remove the remnant bar that was floating there was to set:
LauncherLoader {
id: launcherLoader
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 0
^Change the width to either 0 or 1, 1 will show 1 pixel, but will not produce graphic artifacts.
Is there a less hack-y way to do this?
The other file can be edited using
gksudo gedit /usr/share/unity-2d/shell/launcher/Launcher.qml
I am aware of the autohide feature in CCSM, however that is not what I am looking for. I wanted to place a separate launcher OVER unity, and the sensitivity of autohide would make it difficult to use both.
in compiz i went to the unity section and then the experimental tab and set these values to simply 'fool' the bar into never appearing unless the super button is pressed. If I can get the dash to separate from the bar entirely and move it to Cairo dock i will be extremely satisfied. ...........anyway Experimental Tab
- panel opacity 0.0050
- Launcher Opacity 0.0000
- Reveal Edge 0.2000
- Reveal Pressure 999 (this is the main one so mouse cant grab window)
- Edge Overcome pressure 1
- mouse pressure decay 1
- edge stop 1
- menu fade in and the rest are all 0
- launcher captures mouse ....UNCheCkEd
this way their is no hacking just a little easy tweaking and dash is still there and bar is only visible when hitting dash ...... i guess i could go remove all the launchers from it now and then it would hardly be noticeable.....cheers
you can also go in the config editor and change these values with greater range
- 41
If you log out, insert your username you can then choose (at the bottom) to log into 'Ubuntu Classic'. That'll get you the old 2 panel style gnome.
- 309,379
at least, you can set it to "autohide", ccsm has an option for that
- Install CompizConfig Settings Manager
(CCSM). - Alt + F2
- type
about:configand press Enter - change the hide launcher setting to autohide.
Important:
If would you want gnome panels before disabling launcher;
Navigate to System>Preferences>Startup Applications
Click Add
Name=Gnome panels
Command=gnome-panel
And click close button.
It's ok.
-Unity with gnome panels
Press SUPER key and type
ccsm
than press ENTER.
Disable unity plugin from Compiz Config window (uncheck click box)
Logout & Login to Ubuntu session
-Unity without launcher ...
If you're using Unity 2d you just rename the file /usr/bin/unity-2d-launcher to something else, it will do the trick. You will lose search functionality too, but the menubar will work.
- 73,717
- 21
Did you try to hide the Unity Launcher at all? Install Compiz Config Manager (ccsm), run it, and go to Unity Plugin, then open the Advanced Tab (if I remember that correctly -- the last one), and there should be an option to hide the launcher completely. I presume that the Windows-button functionality should still work with dash completely hidden. However, I cannot guarantee this completely removes the launcher, it might, probably, show up when you do something...
- 1,388
Sure when you login, choose your name and when the password box comes up look at the bottom panel and select Ubuntu Classic.
- 11,840
Use Unity Tweak tool and set the launcher to autohide and then take the reveal sensitivity to the lowest setting, and the unity launcher will only appear when you press super.
By design the Unity Launcher cannot be removed, if you want it gone completely then you can try other desktop environments such as GNOME, Xfce or KDE.
- 91
You can disable the unity plugin in cssm and log out and in again, and it's gone. But before that perhaps add something like awn to your startup applications.
- 23,540
Use unity-2d-panel. It's installed by default. To see what that would feel like, press alt+f2 and run metacity --replace && unity-2d-panel.
- 29,687
You could change/disable the reveal mode of the launcher. This will not disable the launcher but then the only way of revealing the launcher will be to press the Super key.
To do this, complete steps 1-3 as mentioned by tobi. Now the settings for the reveal mode is displayed, and all you have to do is change the reveal mode.
I know this is more than a year layer, but I still wanted to give my answer: Install Compiz-Config-Settings-Manager, open it up, DISABLE Unity Plugin completely, install GnoMenu or Cardapio, or any of the other search utilities available as plugins for cairo-dock, and there you go!
Also, instead of trying to fix Gnome, another alternative is KDE. Install kubuntu-desktop from the software center and you won't regret it.
- 29
For Unity 7.4.0 replace the file "/usr/lib/x86_64-linux-gnu/compiz/libunityshell.so" with this file
After replacing file ,set the launcher in autohide mode and restart pc. This will completely hide unity-launcher even while launching dash. Hope it works.
- 897