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

feature/ MacOS show vpn name and tailscale exit node if active #279

Merged
Merged
Changes from 1 commit
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
Next Next commit
feature/show-vpn-name-or-name-of-tailscale-exit-node
Theoreticallyhugo committed Feb 24, 2025
commit 12f9e9754f286923c828d6f0af47ece5c80823d5
41 changes: 37 additions & 4 deletions scripts/network_vpn.sh
Original file line number Diff line number Diff line change
@@ -17,14 +17,47 @@ vpn_function() {
echo "NO VPN"
fi
;;

Darwin)
vpn=$(scutil --nc list | grep Connected)

if [ -z $vpn ]; then
verbose=$(get_tmux_option "@dracula-network-vpn-verbose" false)

vpn="$(scutil --nc list | sed "s/\*//g" | grep Connected)"

is_not_tailscale=$(echo "$vpn" | grep -v Tailscale)

which -s tailscale > /dev/null
tailscale_installed=$?

if [ -z "$vpn" ]; then
echo ""

elif [ $tailscale_installed ] && [ -z "$is_not_tailscale" ]; then
# if tailscale is installed and no other vpn is connected. this is because tailscale will
# always show as connected for some reason.
#
# https://www.reddit.com/r/Tailscale/comments/18dirro/is_there_a_way_i_can_tell_which_exit_node_i_am/
node=$(tailscale status --peers --json | jq '.ExitNodeStatus')
if [[ -z $node ]] || [[ "$node" == 'null' ]]; then
# no tailscale exit node, no output, since trafic isnt actually rerouted
echo ""
else
exitnode=$(tailscale status | grep "; exit node" | cut -w -f 2)

if $verbose; then
echo "󰌘 $exitnode"
else
echo "Tailscale"
fi
fi

else
echo "VPN"
if $verbose; then
vpn_name=$(echo $is_not_tailscale | sed "s/.*\"\(.*\)\".*/\1/g")
echo "󰌘 $vpn_name"
else
echo "VPN"
fi
fi
;;