Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ The `/usr/share/ublue-os/homebrew/` directory contains curated application bundl
- **`artwork.Brewfile`** - Design and artwork applications

Users can install these bundles using the `ujust bbrew` command, which will prompt them to select a Brewfile.
The local Bluespeed stack can be installed directly with `ujust bluespeed`.

## CI / Testing

Expand Down
11 changes: 11 additions & 0 deletions system_files/bluefin/usr/share/ublue-os/just/system.just
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ devmode:
fi
ujust toggle-devmode

# Install the opt-in local Bluespeed assistant stack.
[group('System')]
bluespeed:
#!/usr/bin/env bash
set -euo pipefail
if ! command -v brew &>/dev/null; then
echo "bluespeed: Homebrew is required" >&2
exit 127
fi
brew bundle --file=/usr/share/ublue-os/homebrew/ai-tools.Brewfile

# Set up the Developer Experience
[group('System')]
toggle-devmode:
Expand Down
Loading