2024-01-17 11:30:05 -05:00
|
|
|
_default:
|
|
|
|
@just --list
|
|
|
|
|
2024-02-05 12:37:44 -05:00
|
|
|
# runs checks
|
|
|
|
checks: _shellcheck _shfmt
|
|
|
|
|
|
|
|
_shellcheck:
|
|
|
|
shellcheck *.sh
|
|
|
|
|
|
|
|
_shfmt:
|
|
|
|
shfmt -i 2 -w -s *.sh
|
|
|
|
|
2024-01-17 11:30:05 -05:00
|
|
|
# performs steps for mac
|
|
|
|
mac:
|
|
|
|
./install-cli-tools.sh
|
2024-02-05 12:37:44 -05:00
|
|
|
[ -f "$HOME/.nix-profile/bin/terminal-notifier" ] || nix profile install nixpkgs#terminal-notifier
|
|
|
|
./setup-shell-configs.sh
|
2024-01-17 11:30:05 -05:00
|
|
|
./install-mac-apps.sh
|
|
|
|
|
|
|
|
# performs steps for linux
|
|
|
|
linux:
|
|
|
|
./install-cli-tools.sh
|
2024-02-05 12:37:44 -05:00
|
|
|
./setup-shell-configs.sh
|