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(just): add missing quotes in setup-fleek #198

Merged
merged 1 commit into from
Jan 17, 2024
Merged
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
6 changes: 3 additions & 3 deletions build/ublue-os-just/70-nix.just
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@ setup-fleek ACTION="prompt":
echo " Use 'integrate' to integrate nix applications with system theme."
exit 0
fi
if [ "$OPTION" == "Install Fleek" ] || [ "${OPTION,,} == "install" ]; then
if [ "$OPTION" == "Install Fleek" ] || [ "${OPTION,,}" == "install" ]; then
mkdir -p $HOME/.config/nix
echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
curl -fsSL https://getfleek.dev/installer | env FORCE=1 bash
elif [ "$OPTION" == "Uninstall Fleek" ] || [ "${OPTION,,} == "remove" ]; then
elif [ "$OPTION" == "Uninstall Fleek" ] || [ "${OPTION,,}" == "remove" ]; then
if [[ -x "/var/usrlocal/bin/fleek" ]]; then
sudo rm -f /var/usrlocal/bin/fleek
else
echo "Fleek is not installed or has been already removed"
fi
elif [ "$OPTION" == "Integrate Nix/Fleek applications with system theme" ] || [ "${OPTION,,} == "integrate" ]; then
elif [ "$OPTION" == "Integrate Nix/Fleek applications with system theme" ] || [ "${OPTION,,}" == "integrate" ]; then
if [[ -x "/var/usrlocal/bin/fleek" ]]; then
if command -v mutter; then
fleek add adw-gtk3 --apply
Expand Down