27

enter image description here

I want like above screenshot for quick access to my file/folder.

nazar2sfive
  • 1,493

7 Answers7

28

Follow the steps below.

  1. Create a .desktop file (say custom-filemanager.desktop) in ~/.local/share/applications. You can do this by running the following command in Terminal

    touch ~/.local/share/applications/custom-filemanager.desktop
    
  2. Open the .desktop file using a text-editor, for example by running

    gedit ~/.local/share/applications/custom-filemanager.desktop
    
  3. Add the following lines to the file:

    [Desktop Entry]
    Name=File Manager
    Comment=Access and organize files
    Keywords=folder;manager;explore;disk;filesystem;
    Exec=nautilus --new-window %U
    Icon=org.gnome.Nautilus
    Terminal=false
    Type=Application
    Categories=GNOME;GTK;Utility;Core;FileManager;
    Actions=new-window;open-downloads;
    
    [Desktop Action new-window]
    Name=New Window
    Exec=nautilus --new-window
    [Desktop Action open-downloads]
    Name=Open my Downloads folder
    Exec=nautilus /home/YOUR-USER-NAME/Downloads
    

    Replace YOUR-USER-NAME by your user-name in the last line.

  4. Save the file.

  5. Click on "Activities" and search for "File Manager". It should appear.

  6. Right click on the "File Manager" and select "Add to Favourites". It should be added to the dock.

Now if you right click on the newly added File Manager icon in the dock, you should see a "Open my Downloads folder" option which should work as expected.

enter image description here

Similarly you can add shortcuts to other locations by adding new Desktop Actions and adding the name of the action to the Actions= line. For more info see this.

pomsky
  • 70,557
7

As we can pin only Application to Gnome Dock, the best available option here is creating an application launcher that will open the favorite directory directly with a single mouse click.

  1. So in order to do that navigate to activities and search for "Main menu".

    screenshot

    Now you will get a window titled Main menu.

  2. Click on New item. and You will get a small window and fill the fields like described below.

    In the given example I am pinning my Videos directory to Dock.

    screenshot

    And now it will be shown at the bottom of the main menu window like this

    screenshot.

  3. Click on close button and again go to activities and search for the the "Name" provided. In my case its "My Videos". Single click on that and just drag and drop it to the Gnome dock.

    Now You will get the shortcut on your Dock.

    screenshot

If you click on that you will get your favorite directory which you set opened by nautilus.

Tweaks

You can do more tweaks like changing the icon of the application launcher you want while creating the shortcut of even after creating the shortcut and pinning it.

After tweaking my shortcut (My Videos) is like this.

screenshot

Pablo Bianchi
  • 17,371
Rooney
  • 975
3

Here is how to make it in Ubuntu 18.04:

  1. Open Files, press Ctrl+L and paste /usr/share/applications.

  2. Look for the "Files" icon and copy it (right click > Copy)

    Note: in my system, I don't know why, there are tree "Files" icon. For this procedure I selected the first one, which has 2,7kB. To make sure it'll work in your computer I recommend you to do the same.

  3. Now open your personal folder and press Ctrl+H to show hidden files.

  4. Once you've done it, navigate to .local/share/applications and paste the file you copied in the step 2 into this folder.

  5. You'll see a new icon called org.gnome.Nautilus.desktop. Right click on it and select "Open with other application". Select the Text Editor to open it and replace the content of the file with the following:

    [Desktop Entry]
    Name=Files
    Comment=Access and organize files
    Keywords=folder;manager;explore;disk;filesystem;
    Exec=nautilus --new-window %U
    Icon=org.gnome.Nautilus
    Terminal=false
    Type=Application
    Categories=GNOME;GTK;Utility;Core;FileManager;
    StartupWMClass=nautilus;Nautilus
    Actions=new-window;open-documents;open-downloads;open-pictures;open-music;open-videos;
    
    [Desktop Action new-window]
    Name=New window
    Exec=nautilus --new-window
    
    [Desktop Action open-documents]
    Name=Documents
    Exec=nautilus /home/YOUR-USER-NAME/Documents
    
    [Desktop Action open-downloads]
    Name=Downloads
    Exec=nautilus /home/YOUR-USER-NAME/Downloads
    
    [Desktop Action open-pictures]
    Name=Pictures
    Exec=nautilus /home/YOUR-USER-NAME/Pictures
    
    [Desktop Action open-music]
    Name=Music
    Exec=nautilus /home/YOUR-USER-NAME/Music
    
    [Desktop Action open-videos]
    Name=Videos
    Exec=nautilus /home/YOUR-USER-NAME/Videos
    

    Replace YOUR-USER-NAME by your username.

  6. Save the document and close it. You're done!

Note: If your system is in another language that not English replace the words of the filds Name= and Exec= of the desired [Desktop Action] for the equivalent in your language. See an example in Portuguese above:

[Desktop Action open-pictures]
Name=Pictures
Exec=nautilus /home/YOUR-USER-NAME/Pictures

Is going to be:

[Desktop Action open-pictures]
Name=Imagens
Exec=nautilus /home/YOUR-USER-NAME/Imagens

Finally, replace the word of the field Name=Files of [Desktop Entry] according to what Files means in your language. In Portuguese, for example, Files is translated Arquivos, so I had to change Name=Files to Name=Arquivos. If you don't do this, you'll end up with two Files icons with different names in your computer.


Final result

enter image description here

pomsky
  • 70,557
Alex
  • 419
  • 1
  • 6
  • 17
2

It's not prefect for what you seek, but you might be interested in the Gno-Menu extension.

The extension adds a quite configurable menu. The following shows it's default:

enter image description here

The recent documents I have accessed are shown on the right. The shortcuts on the left are set to the Places of Nautilus. The highlighted folder shortcut is to a folder I have "pinned" in Nautilus.

The Recents overview does not seem to support viewed folders. I don't know how the "Link to Intro etc." link got in there. Creating a new link to a folder and opening it did not put the folder there, and roaming in Nautilus does not affect Recents (until you open a file).

The right-hand side can also be configured to show your Favorites from the overview, where you could then add .desktop entries for Nautilus to open specific folders. (See pomsky's answer, but use Exec=nautilus /home/user/folder/ --new-window %U and include only the [Desktop Entry] part.)

Rasmus
  • 8,655
0

I don't think getting "exactly" what you composed with pinta is feasible, if not dealing directly with code in GTK or other packages. In that case, this OP is more suitable for stackoverflow.

I guess you will increase your chances of getting something useful if you specify which aspects of the difference between your image and this image by pomsky you require as mandatory.

For instance, if you need the titles "Pinned" and "Frequent", plus the separators, that is likely built into GTK or else. If you mostly want to get access to some "Pinned" folders, without the title, that is already available. If you are ok with adding the "Frequent" folders, without the title, that is perhaps doable with a dynamic script that reads the information stored as per Settings -> Privacy -> File History & Trash, which should be enabled.

0

In Ubuntu 22.04 (Gnome 42.4) you can easily pin your application from Dash search:

enter image description here

karel
  • 122,292
  • 133
  • 301
  • 332
-1

I think it can be much simpler.
When you open an application or a folder,
it shows in your dock by default.
When you close it, it goes away.
So when it IS open and showing in your dock,
Right-Click the icon and "Add to Favourites",
then it will remain and live happily in your dock.