Created
July 27, 2021 14:20
-
-
Save sandrocarval/1633af55a0d5bb6739a0f58f4f6bf466 to your computer and use it in GitHub Desktop.
Obsidian setup
This file contains 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
sudo mkdir /opt/obsidian | |
sudo wget -O icon.png "https://dl.dropboxusercontent.com/s/6wv77rkpdcgug4e/20201104173308_obsidian%20icon.png" -P /opt/obsidian | |
sudo wget -O obsidian.AppImage "https://github.com/obsidianmd/obsidian-releases/releases/download/v0.12.10/Obsidian-0.12.10.AppImage" -P /opt/obsidian | |
sudo chmod +x /opt/obsidian/obsidian.AppImage | |
sudo tee -a /usr/share/applications/obsidian.desktop <<-EOF | |
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Name=Obsidian | |
Icon=/opt/obsidian/icon.png | |
Exec="/opt/obsidian/obsidian.AppImage" %f | |
Comment=Powerful knowledge base | |
Categories=Other; | |
Terminal=false | |
StartupWMClass=obsidian | |
StartupNotify=true | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment