This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # ----------------------------------------------------------------------- | |
| # setup-user-tailscale-ssh: Install Tailscale static binaries for a user | |
| # and configure a user-space Tailscale SSH endpoint on the current machine. | |
| # ----------------------------------------------------------------------- | |
| # | |
| # What this does: | |
| # - Downloads the latest stable static Tailscale binaries from Tailscale | |
| # - Installs versioned binaries into $HOME/.local/bin | |
| # - Creates a reusable helper: $HOME/.local/bin/user-tailscale-ssh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # ----------------------------------------------------------------------- | |
| # update-vscode-cli: Download and install VSCode and/or Cursor CLI tools | |
| # ----------------------------------------------------------------------- | |
| # | |
| # This script downloads and installs the latest versions of CLI tools | |
| # for VSCode on Linux systems. | |
| # | |
| # Usage: | |
| # update-vscode-cli # Install/update all supported tools |