12

I've checked and read similar questions, but most of the answers requires installing either dconf-tools, CCSM or MyUnity.

In Ubuntu 12.04, is there a way to hide mounted partitions or devices from the Unity Launcher without the need to install the aforementioned tools? Is this possible via terminal or command line?

Peachy
  • 7,117
  • 10
  • 38
  • 46

3 Answers3

17

From terminal:

  • Hide mounted partition or devices:

      gconftool --set /apps/compiz-1/plugins/unityshell/screen0/options/devices_option  --type=int 0
    
  • Show mounted partition or devices:

      gconftool --set /apps/compiz-1/plugins/unityshell/screen0/options/devices_option  --type=int 1
    
3

You can install Myunity, wherein select the option from the Show Devices Menu from Launcher Menu Tab as here.

enter image description here

atenz
  • 12,772
  • 1
    Thank you for the response, but I was looking for a solution that doesn't need an additional app to be installed, if possible. My bad, I didn't mention myUnity in the question. – Peachy Jul 03 '12 at 10:26
3

You might want to change the mount point. I noticed that it tends to only show devices mounted to /media.

In my case, I wanted to hide the internal drives that are mounted while showing my USB drives.

penreturns
  • 5,950
Cory
  • 222