Initial commit of LFS notes and scripts.
This commit is contained in:
18
lfs-notes/misc/packages.sh
Normal file
18
lfs-notes/misc/packages.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user