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

13 lines
470 B
Bash
Raw Normal View History

2021-11-14 00:44:24 +01:00
# Fetching last Obsidian version
2021-11-08 21:51:28 +01:00
wget -q https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest
echo "Retrieve the last package..."
grep -n 'browser_download_url": ".*.snap"' latest | awk '{ print substr ($0, 36 ) }' | awk '{ print substr( $0, 1, length($0)-1 ) }' > url
rm latest
2021-11-14 00:44:24 +01:00
# Downloading package
2021-11-08 21:51:28 +01:00
wget -q --show-progress -i url -O obsidian.snap
rm url
2021-11-14 00:44:24 +01:00
# Installing
2021-11-08 21:51:28 +01:00
sudo snap install --dangerous obsidian.snap
2021-11-14 00:44:24 +01:00
# Removing package
2021-11-08 21:51:28 +01:00
rm obsidian.snap