summaryrefslogtreecommitdiff
path: root/bin/dmenu_ssh
blob: c833166b9dd252e5d67b132a68538b9741c6f713 (plain)
1
2
3
4
5
6
7
#!/bin/sh

host=$(perl -wlne'/^Host\s+(\S+)/ and !/\*/ and print $1' $HOME/.ssh/config \
	   | dmenu -p "ssh to tmux on host" "$@")
if [ -n "$host" ]; then
    ssh-and-tmux-term "$host"
fi