Skip to content

Instantly share code, notes, and snippets.

@asayers
Created October 23, 2016 07:40
Show Gist options
  • Save asayers/ec549f871c1ba30ee3de79cbb09a2a3b to your computer and use it in GitHub Desktop.
Save asayers/ec549f871c1ba30ee3de79cbb09a2a3b to your computer and use it in GitHub Desktop.
#!/bin/sh -eu
list_hosts () { echo "localhost"; sed -n 's/Host //p' "$HOME/.ssh/config"; }
SELECTION=$(list_hosts | dmenu -i)
case "$SELECTION" in
"localhost") exec st tmux ;;
*) exec st mosh "$SELECTION" tmux ;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment