Added btop app

This commit is contained in:
2021-11-24 09:24:48 +01:00
parent 7af77e9255
commit 3b2bb3b525
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
install_btop() {
sudo apt install coreutils sed git build-essential gcc-11 g++-11
git clone https://github.com/aristocratos/btop.git
cd btop
sudo make
sudo make install
}