Skip to content

Commit

Permalink
feat(just): add JetBrains Toolbox app install (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobslept committed Aug 11, 2023
1 parent 4c2bb16 commit 18ee42d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions usr/share/ublue-os/just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ gnome-extensions:
gext install pano@elhan.io
gext install weatheroclock@CleoMenezesJr.github.io

# Install JetBrains Toolbox | https://www.jetbrains.com/toolbox-app/
jetbrains-toolbox:
#!/usr/bin/env bash
BUILD_VERSION="2.0.1.16621"
echo "Installing JetBrains Toolbox"
pushd "$(mktemp -d)"
curl -sSfL -O https://download.jetbrains.com/toolbox/jetbrains-toolbox-$BUILD_VERSION.tar.gz
curl -sSfL https://download.jetbrains.com/toolbox/jetbrains-toolbox-$BUILD_VERSION.tar.gz.sha256 | sha256sum -c
tar zxf jetbrains-toolbox-$BUILD_VERSION.tar.gz
echo "Launching JetBrains Toolbox"
./jetbrains-toolbox-$BUILD_VERSION/jetbrains-toolbox

nix-devbox:
echo 'Setting phasers to kill. Installing nix.'
Expand Down

0 comments on commit 18ee42d

Please sign in to comment.