Skip to content

Commit

Permalink
feat(just/custom): add aquaproj install target (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottames committed Aug 8, 2023
1 parent 2533364 commit 76cbad3
Showing 1 changed file with 15 additions and 3 deletions.
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 improvedosk@nick-shmyrev.dev
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

0 comments on commit 76cbad3

Please sign in to comment.