This commit is contained in:
2024-06-17 00:39:25 +02:00
parent bf35bf65c2
commit 2bf85de679
2 changed files with 16 additions and 0 deletions

7
install/app-lazygit.sh Normal file
View File

@@ -0,0 +1,7 @@
cd ~/Downloads
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
curl -sLo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"
tar -xf lazygit.tar.gz lazygit
sudo install lazygit /usr/local/bin
rm lazygit.tar.gz lazygit
cd -