Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ublue, fastfetch): correctly source custom configuration file #88

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading