mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-17 04:24:20 +01:00
12 lines
428 B
Bash
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
|