Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[script] Tailscale Switch: Make it switch account without logout #957

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions commands/apps/tailscale/tailscale-switch.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to add credits to yourself too

# @Documentation:
# @raycast.description Switches Tailscale networks

# Original author
# @raycast.author Ross Zurowski
# @raycast.authorURL https://github.com/rosszurowski

# Contributor
# @raycast.author Ross Zurowski
# @raycast.authorURL https://github.com/quatauta

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you so much @unnamedd ! I added credits in commit 1d6845d.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Amazing!

Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@

# @Documentation:
# @raycast.description Switches Tailscale networks

# Original author
# @raycast.author Ross Zurowski
# @raycast.authorURL https://github.com/rosszurowski

# Contributor
# @raycast.author Daniel Schoemer
# @raycast.authorURL https://github.com/quatauta

ts=""

if command -v tailscale &> /dev/null; then
Expand All @@ -29,12 +35,11 @@ else
exit 1
fi

$ts logout
$ts up
"${ts}" switch --list | # List all Tailscale accounts "<ID> <Tailnet name> <User account name>"
grep -vF -e 'ID' -e '*' | # Omit the header line and the current account marked with "*"
awk '{ print $1 }' | # Print only the account ID of not-connected accounts
head -n1 | # Print only the first not-connected account
xargs -r -n1 "${ts}" switch # Switch to the selected account

if command -v jq &> /dev/null; then
account=$($ts status --json | jq -r '.User[(.Self.UserID | tostring)].LoginName')
echo "Connected as $account"
else
echo "Connected"
fi
tailnet="$("${ts}" switch --list | awk '/\*/ { print $2 }')"
echo "Switched to ${tailnet}"