Last active
December 7, 2025 05:49
-
-
Save Sarverott/e76164e0711bfeb7cd371b81e2a9ade0 to your computer and use it in GitHub Desktop.
[experimental] obsidian easy download
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
| .github-releases.json | |
| *.AppImage | |
| *.svg |
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
| #!/bin/sh | |
| APP_NAME = obsidian | |
| GIST_URL = "https://gist.github.com/Sarverott/e76164e0711bfeb7cd371b81e2a9ade0" | |
| GH_API_URL = "https://api.github.com/repos/obsidianmd/obsidian-releases/releases" | |
| APP_ICON = "https://obsidian.md/images/obsidian-logo-gradient.svg" | |
| mkdir -p "~/__WORKSHOP/devarmory/$APP_NAME" | |
| git clone $GIST_URL "~/__WORKSHOP/devarmory/$APP_NAME" | |
| wget $GH_API_URL -O "~/__WORKSHOP/devarmory/$APP_NAME/.github-releases.json" | |
| wget $APP_ICON -P "~/__WORKSHOP/devarmory/$APP_NAME/" | |
| ln -f -s "~/__WORKSHOP/devarmory/$APP_NAME/$APPIMAGE_FILE" "~/__WORKSHOP/devarmory/$APP_NAME/_current.AppImage" | |
| cp "~/__WORKSHOP/devarmory/$APP_NAME/launcher.desktop" "~/Desktop/$APP_NAME.desktop" |
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
| #!/usr/bin/env xdg-open | |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Terminal=false | |
| Exec=~/__WORKSHOP/devarmory/obsidian/_current.AppImage | |
| Icon=~/__WORKSHOP/devarmory/obsidian/obsidian-logo-gradient.svg | |
| Name=OBSIDIAN | |
| Comment=obsidian notebooks app image louncher |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment