Created
February 15, 2023 10:11
-
-
Save dzanaga/ad20ce563cf428ce25af6ee088adad34 to your computer and use it in GitHub Desktop.
Add desktop shortcut for conda QGIS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create the desktop shortcut: | |
| ``` | |
| nano .local/share/applications/qgis.desktop | |
| ``` | |
| ``` | |
| #!/usr/bin/env xdg-open | |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| Exec=env PATH=/home/daniele/miniconda3/envs/qgis/bin /home/daniele/miniconda3/envs/qgis/bin/qgis | |
| Name=QGIS | |
| Comment="QGIS 3.22" | |
| Icon=/home/daniele/Pictures/Qgis-icon-3.0.png | |
| ``` | |
| Start it once with: | |
| ``` | |
| gtk-launch qgis | |
| ``` | |
| Pin it to the dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment