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

feat(just/custom): add aquaproj install target #386

Merged
merged 1 commit into from
Aug 8, 2023
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
18 changes: 15 additions & 3 deletions usr/share/ublue-os/just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ assemble:
echo 'Assembling and replacing distroboxes ...'
distrobox assemble create --replace --file /etc/distrobox/distrobox.ini

# Install aqua | https://aquaproj.github.io
aqua:
@printf '\n=>Installing aqua ...\n\n'
pushd "$(mktemp -d)"
curl -sSfL -O https://raw.githubusercontent.com/aquaproj/aqua-installer/v2.1.1/aqua-installer
echo "c2af02bdd15da6794f9c98db40332c804224930212f553a805425441f8331665 aqua-installer" | sha256sum -c
chmod +x aqua-installer
./aqua-installer
@printf '\n=> Make sure the ${AQUA_ROOT_DIR}/bin environment variable is added to your PATH (.bashrc/.zshrc):\n'
@printf '\n export PATH="${AQUA_ROOT_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/aquaproj-aqua}/bin:$PATH"\n'
@printf '\n=> see https://aquaproj.github.io/docs/tutorial for more info\n'

brew:
echo "Installing homebrew ..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Expand All @@ -24,7 +36,7 @@ code-profile:

distrobox-wolfi:
echo 'Creating WolfiOS distrobox ...'
distrobox create --image ghcr.io/ublue-os/wolfi-toolbox:latest -n wolfi
distrobox create --image ghcr.io/ublue-os/wolfi-toolbox:latest -n wolfi

distrobox-universal:
echo 'Creating Universal Development distrobox ...'
Expand Down Expand Up @@ -61,7 +73,7 @@ nix-devbox-global:
tea:
echo 'Installing the tea package manager'
sh <(curl https://tea.xyz)

touch:
pip install --upgrade gnome-extensions-cli
gext install [email protected]
Expand All @@ -70,7 +82,7 @@ touch:
update-distrobox-git:
echo 'Installing latest git snapshot of Distrobox'
curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sh -s -- --next --prefix ~/.local

yafti:
yafti /etc/yafti.yml

Expand Down