Skip to content

Commit

Permalink
fix(ublue, fastfetch): correctly source custom configuration file (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz authored Dec 30, 2024
1 parent a00554d commit b1f95f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ublue/fastfetch/src/ublue-fastfetch
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ LOGO_DIRECTORY="$(get_config '."logo-directory"' "/usr/share/ublue-os/fastfetch"

if [ "$SHUFFLE_LOGO" == "true" ] ; then
FETCH_LOGO="$(/usr/bin/find "$LOGO_DIRECTORY" | /usr/bin/shuf -n 1)"
/usr/bin/fastfetch --logo "$FETCH_LOGO" --color "$(/usr/libexec/ublue-bling-fastfetch)" --config "/usr/share/ublue-os/ublue-os.jsonc"
/usr/bin/fastfetch --logo "$FETCH_LOGO" --color "$(/usr/libexec/ublue-bling-fastfetch)" --config "$FASTFETCH_CONFIG"
else
/usr/bin/fastfetch --color "$(/usr/libexec/ublue-bling-fastfetch)" --config "/usr/share/ublue-os/ublue-os.jsonc"
/usr/bin/fastfetch --color "$(/usr/libexec/ublue-bling-fastfetch)" --config "$FASTFETCH_CONFIG"
fi


2 changes: 1 addition & 1 deletion ublue/fastfetch/ublue-fastfetch.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Name: ublue-fastfetch
Version: 0.1.0
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Fastfetch configuration for Universal Blue systems

License: Apache-2.0
Expand Down

0 comments on commit b1f95f1

Please sign in to comment.