Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
17
rated 0 times [  17] [ 0]  / answers: 1 / hits: 10636  / 2 Years ago, tue, november 15, 2022, 8:38:22

I would like to pin a file's shortcut to the dock in the Ubuntu 18.04 GNOME desktop so that the file opens directly when I click it, for example a spreadsheet file that opens with LibreOffice Calc. Is this possible?


More From » gnome-shell

 Answers
1

Follow the steps below.




  1. Create a .desktop file (say spreadsheet1.desktop) in ~/.local/share/applications/ directory. You can do that by running the following command in Terminal:



    touch ~/.local/share/applications/spreadsheet1.desktop

  2. Open the file with a text editor, for example by running



    gedit ~/.local/share/applications/spreadsheet1.desktop


    Then add the following lines:



    [Desktop Entry]
    Name=XYZ spreadsheet
    Exec=xdg-open /full/path/to/XYZ-spreadsheet.ods
    Comment=Launch XYZ spreadsheet
    Terminal=false
    Type=Application
    Icon=x-office-spreadsheet

  3. Save the file.

  4. Click on "Activities" or "Show Applications" and search for "XYZ spreadsheet". It should appear.


  5. Right click on it and mark as favourite.




Note: The xdg-open command opens the file with the default application associated with the file-type. You can alternatively set



Exec=libreoffice /full/path/to/XYZ-spreadsheet.ods


in the .desktop file to always open the file with LibreOffice Calc.


[#6804] Wednesday, November 16, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
hamostic

Total Points: 403
Total Questions: 142
Total Answers: 112

Location: Iceland
Member since Sat, Sep 17, 2022
2 Years ago
;