Files
omakub/install/terminal/app-fastfetch.sh
Luca Pattocchio 700bbdda8e Add fastfetch config
Check on config file

Add migration
2024-08-22 23:45:23 +02:00

12 lines
428 B
Bash

# Display system information in the terminal
sudo add-apt-repository -y ppa:zhangsongcui3371/fastfetch
sudo apt update -y
sudo apt install -y fastfetch
# Only attempt to set configuration if fastfetch is not already set
if [ ! -f "$HOME/.config/fastfetch/config.jsonc" ]; then
# Use Omakub fastfetch config
mkdir -p ~/.config/fastfetch
cp ~/.local/share/omakub/configs/fastfetch.jsonc ~/.config/fastfetch/config.jsonc
fi