sh_linux_installation_scripts/common/debian/apps/btop.sh

9 lines
197 B
Bash
Raw Normal View History

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
}