9 lines
203 B
Bash
9 lines
203 B
Bash
|
#!/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
|
||
|
}
|