diff --git a/README.md b/README.md index e69de29..690c9d0 100644 --- a/README.md +++ b/README.md @@ -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 +``` diff --git a/install/app-lazygit.sh b/install/app-lazygit.sh new file mode 100644 index 0000000..b038cc2 --- /dev/null +++ b/install/app-lazygit.sh @@ -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 -