Skip to content

Instantly share code, notes, and snippets.

@stepbrobd
Last active October 5, 2023 15:18
Show Gist options
  • Save stepbrobd/81d956ad5ac8f4c72595f3e2e54e2822 to your computer and use it in GitHub Desktop.
Save stepbrobd/81d956ad5ac8f4c72595f3e2e54e2822 to your computer and use it in GitHub Desktop.
install spin and ispin
#!/bin/bash
set -exuo pipefail
git clone --depth 1 https://github.com/nimble-code/spin.git ~/.spin
pushd ~/.spin
make
ln -fsv ~/.spin/Src/spin /usr/local/bin/spin
echo '#!/bin/bash
TK_SILENCE_DEPRECATION=1 ~/.spin/optional_gui/ispin.tcl' > ~/.spin/optional_gui/ispin
chmod +x ~/.spin/optional_gui/ispin
ln -fsv ~/.spin/optional_gui/ispin /usr/local/bin/ispin
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment