This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
manjaroConfiguration/installObsidian.sh
2021-11-14 16:15:06 +01:00

12 lines
467 B
Bash

# Fetching last Obsidian version
wget -q https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest
echo "Retrieve the last package..."
grep 'browser_download_url": ".*.snap"' latest | awk '{ print substr ($0, 32 ) }' | awk '{ print substr( $0, 1, length($0)-1 ) }' > url
rm latest
# Downloading package
wget -q --show-progress -i url -O obsidian.snap
rm url
# Installing
sudo snap install --dangerous obsidian.snap
# Removing package
rm obsidian.snap