sh_linux_installation_scripts/common/redhat/apps/btop.sh

10 lines
233 B
Bash
Raw Normal View History

2021-11-24 09:24:48 +01:00
#!/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
}