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

View File

@@ -0,0 +1,9 @@
# misebuntu
Turn a fresh Ubuntu installation into a fully configured desktop by running a single command.
misebuntu is what I prefer Ubuntu to be.
It is a play in on the term *mise en place* and Ubuntu.
Getting starting is simple - just run:
```bash
wget -qO- https://git.cbo.dk/rasmus/setup-ubuntu/raw/branch/v0.1/installer.sh | bash
```

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 -