Skip to content

Instantly share code, notes, and snippets.

View spinning-cubes's full-sized avatar

Spinning Cubes spinning-cubes

  • Somewhere over the rainbow
View GitHub Profile
@spinning-cubes
spinning-cubes / install.sh
Created December 9, 2025 02:26
Chromebrew installer that doesn't clear /usr/local
#!/bin/bash
CREW_INSTALLER_VERSION=2025120401
# Exit on fail.
set -eE
RESET='\e[0m'
# Simplify colors and print errors to stderr (2).
echo_error() { echo -e "\e[1;91m${*}${RESET}" >&2; } # Use Light Red for errors.
echo_info() { echo -e "\e[1;33m${*}${RESET}" >&1; } # Use Yellow for informational messages.