10 lines
233 B
Bash
10 lines
233 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_btop() {
|
||
|
sudo dnf groupinstall 'Development Tools' -y
|
||
|
sudo dnf install coreutils sed git gcc-c++ -y
|
||
|
git clone https://github.com/aristocratos/btop.git
|
||
|
cd btop
|
||
|
sudo make
|
||
|
sudo make install
|
||
|
}
|