Files
lfs/lfs-notes/misc/packages.sh
2025-01-20 15:44:57 -05:00

19 lines
515 B
Bash

# For doing Linux
dnf install -y vim tmux git wget tree
# For bpytop
dnf install python-pip3
python3 -m pip install psutil
mkdir -p /root/sources && cd /root/sources
git clone https://github.com/aristocratos/bpytop.git
cd bpytop
make install
# For fastfetch
dnf install cmake
mkdir -p /root/sources && cd /root/sources
git clone https://github.com/fastfetch-cli/fastfetch.git
cd fastfetch
mkdir build && cd build
cmake ..
cmake --build . --target fastfetch --target flashfetch
cmake --install . --prefix /usr/local