2021-11-24 09:24:48 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
install_btop() {
|
2021-12-15 22:44:42 +01:00
|
|
|
sudo apt install coreutils sed git build-essential gcc g++
|
2021-11-24 09:24:48 +01:00
|
|
|
git clone https://github.com/aristocratos/btop.git
|
|
|
|
cd btop
|
|
|
|
sudo make
|
|
|
|
sudo make install
|
|
|
|
}
|