Skip to content

Commit

Permalink
chore(just): fix formating for just
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariKnight committed Jan 7, 2024
1 parent 36654a0 commit d651cc1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/ublue-os-just/10-update.just
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ toggle-updates ARG="prompt":
fi
bold=$(tput bold)
normal=$(tput sgr0)
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo "Automatic updates are currently: ${bold}${CURRENT_STATE}${normal}"
echo "Enable or Disable automatic updates?"
Expand Down
2 changes: 1 addition & 1 deletion build/ublue-os-just/40-nvidia.just
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ configure-nvidia ARG="prompt":
#!/usr/bin/env bash
bold=$(tput bold)
normal=$(tput sgr0)
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo "${bold}Configuring Nvidia drivers${normal}"
echo 'What would you like to do?'
Expand Down
4 changes: 2 additions & 2 deletions build/ublue-os-just/50-akmods.just
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ configure-gamepads ARG="prompt":
#!/usr/bin/env bash
bold=$(tput bold)
normal=$(tput sgr0)
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo "${bold}Configuring gamepad drivers${normal}"
echo 'Which drivers do you want to use?'
Expand Down Expand Up @@ -37,7 +37,7 @@ configure-broadcom-wl ARG="prompt":
#!/usr/bin/env bash
bold=$(tput bold)
normal=$(tput sgr0)
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo "${bold}Configuring Broadcom Wi-Fi${normal}"
echo 'Enabling Broadcom WL driver will break numerous other Wi-Fi adapters.'
Expand Down
4 changes: 2 additions & 2 deletions build/ublue-os-just/70-nix.just
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ setup-fleek ARG="prompt":
echo "Please install nix first by running ujust setup-nix"
exit 0
fi
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo 'What would you like to do with Fleek?'
OPTION=$(ugum choose "Install Fleek" "Uninstall Fleek" "Integrate Nix/Fleek applications with system theme")
Expand Down Expand Up @@ -108,7 +108,7 @@ setup-devbox ARG="prompt":
fi
bold=$(tput bold)
normal=$(tput sgr0)
OPTION={{ARG}}
OPTION={{ ARG }}
if [ "$OPTION" == "prompt" ]; then
echo "Devbox is currently: ${bold}${CURRENT_STATE}${normal}"
echo 'What would you like to do with devbox?'
Expand Down

0 comments on commit d651cc1

Please sign in to comment.