add scripts

This commit is contained in:
2024-06-17 00:39:57 +02:00
parent 2bf85de679
commit 3f71189bf1
9 changed files with 93 additions and 0 deletions

6
install/app-localsend.sh Normal file
View File

@@ -0,0 +1,6 @@
cd ~/Downloads
LOCALSEND_VERSION=$(curl -s "https://api.github.com/repos/localsend/localsend/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
wget -O localsend.deb "https://github.com/localsend/localsend/releases/latest/download/LocalSend-${LOCALSEND_VERSION}-linux-x86-64.deb"
sudo apt install -y ./localsend.deb
rm localsend.deb
cd -