You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
372 B
9 lines
372 B
#!/bin/sh
|
|
declare -a FASTFETCH_OPTIONS=( -c /etc/quadlets/base/fastfetch.jsonc )
|
|
if [ "$USER" == "root" ]; then
|
|
FASTFETCH_OPTIONS+=( --custom-key-color dim_red --color-keys red --title-color-user red )
|
|
else
|
|
FASTFETCH_OPTIONS+=( --custom-key-color dim_blue --color-keys blue --title-color-user green )
|
|
fi
|
|
fastfetch "${FASTFETCH_OPTIONS[@]}"
|
|
unset FASTFETCH_OPTIONS
|
|
|