From 719c3734ff2d247b386e398b4cf98aa62c6f6cc0 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sat, 13 Jan 2024 19:04:22 -0500 Subject: Cool new sshchoose prompt --- .local/bin/sshchoose | 8 ++++++-- .local/bin/tmux-r | 11 +++++------ .local/bin/tmux-ssh | 17 +++++++++++++++++ 3 files changed, 28 insertions(+), 8 deletions(-) create mode 100755 .local/bin/tmux-ssh (limited to '.local/bin') diff --git a/.local/bin/sshchoose b/.local/bin/sshchoose index 6b884c6..378ab73 100755 --- a/.local/bin/sshchoose +++ b/.local/bin/sshchoose @@ -1,6 +1,10 @@ #!/bin/sh -choice="$(pass ls ssh/ | sed '1d;s/^.*\s//g' | fzf)" +# user@host are stored in pass under the ssh/ directory +available="$(pass ls ssh/ | sed '/^ssh$/d;s/.*─\s//' | sed 's/\x1b\[[0-9;]*m//g')" -ssh "$(pass ssh/$choice)" +choice="$(echo "$available" | dmenu -p " Choose session")" +addr="$(pass "ssh/$choice")" + +dropdowntoggle "ssh-$choice" "tmux-ssh" "choice" "$addr" diff --git a/.local/bin/tmux-r b/.local/bin/tmux-r index 14dd08a..6b4819c 100755 --- a/.local/bin/tmux-r +++ b/.local/bin/tmux-r @@ -1,5 +1,5 @@ #!/bin/sh -# This script ensures that i3 will spawn a youtube tui. + session="R" # Check if the session exists, discarding output @@ -7,12 +7,11 @@ session="R" tmux has-session -t $session 2>/dev/null if [ $? != 0 ]; then - # Set up your session - tmux new-session -d -s "$session" R -q --no-save - # R -q --no-save - # ([ -e /usr/bin/R ] && R -q --no-save) || python -q + # Set up your session + tmux new-session -d -s "$session" R -q --no-save + # R -q --no-save + # ([ -e /usr/bin/R ] && R -q --no-save) || python -q fi # Attach to created session tmux attach-session -t $session - diff --git a/.local/bin/tmux-ssh b/.local/bin/tmux-ssh new file mode 100755 index 0000000..f47e0ac --- /dev/null +++ b/.local/bin/tmux-ssh @@ -0,0 +1,17 @@ +#!/bin/sh + +# Usage: tmux-ssh user@ip + +session="ssh-$1" + +tmux has-session -t $session 2>/dev/null + +if [ $? != 0 ]; then + # Set up your session + tmux new-session -d -s "$session" "ssh $2" + # R -q --no-save + # ([ -e /usr/bin/R ] && R -q --no-save) || python -q +fi + +# Attach to created session +tmux attach-session -t "$session" -- cgit v1.2.3