mabox-pipemenus/usr/bin/jgssh

112 lines
2.3 KiB
Plaintext
Raw Normal View History

2021-01-27 12:55:13 +01:00
#!/bin/bash
# Daniel Napora 2021 <napcok@gmail.com>
#: jgssh - pipemenu for connecting to hosts defined in ~/.ssh/config
#: Usage: jgssh ( )
#:
#:
case $LANG in
pl*)
SSH_CONN="Połączenia SSH"
CONNECT="Połącz z"
TERM="Terminal"
FM="Menadżer plików"
REMOVE="Usuń to menu z panelu"
EDIT="Edytuj"
;;
es*)
SSH_CONN="Hosts SSH"
CONNECT="Conectar a"
TERM="Terminal"
FM="Gestor de archivos"
REMOVE="Eliminar este menú del panel"
EDIT="Editar"
;;
*)
SSH_CONN="SSH hosts"
CONNECT="Connect to"
TERM="Terminal"
FM="File Manager"
REMOVE="Remove this menu from panel"
EDIT="Edit"
;;
esac
2021-05-30 12:26:18 +02:00
mkdir -p "$HOME/.ssh"
2021-01-27 12:55:13 +01:00
__usage() {
grep "^#:" $0 | while read DOC; do printf '%s\n' "${DOC###:}"; done
exit
}
__mklist() {
hostlist=$(sed -ne 's/^[[:blank:]]*[Hh][Oo][Ss][Tt][[:blank:]]\{1,\}\([^#*?%]*\)\(#.*\)\{0,1\}$/\1/p' ~/.ssh/config)
out+=("^sep($SSH_CONN)")
for host in $hostlist;
do
out+=("$host,^checkout($host)")
out2+=("^tag($host)")
out2+=("^sep($CONNECT $host)")
out2+=("<big></big> $TERM,^term(ssh $host)")
out2+=(" $FM,pcmanfm $HOME sftp://$host/")
done
out+=("^sep()")
2022-08-17 14:19:31 +02:00
out+=("$EDIT <i>~/.ssh/config</i>, xdg-open $HOME/.ssh/config")
2021-01-27 12:55:13 +01:00
}
__removable() {
__mklist
out+=("^sep()")
2021-05-23 10:20:13 +02:00
out+=("<i>$REMOVE</i>,mb-setvar places_sshpipe=false;mb-jgtools places")
2021-01-27 12:55:13 +01:00
__ret
}
__standalone() {
2021-05-30 12:26:18 +02:00
__mklist
2021-09-24 01:40:09 +02:00
. /usr/share/mb-jgtools/pipemenu-standalone.cfg
2021-05-30 12:26:18 +02:00
. $HOME/.config/mabox/mabox.conf
if [[ $panels_heightpos == "top" ]]; then
MENU_VALIGN="top"
MENU_MARGIN_Y=${panels_topmargin:-0}
elif [[ $panels_heightpos == "bottom" ]]; then
MENU_VALIGN="bottom"
MENU_MARGIN_Y=${panels_topmargin:-0}
else
MENU_VALIGN="center"
fi
2021-05-31 15:00:35 +02:00
MENU_PADDING_TOP=${jgtools_padding:-0}
2021-05-30 12:26:18 +02:00
MENU_HALIGN="left"
MENU_MARGIN_Y=40
jgmenu_icon_size=0
menu_margin_x=${submenu_spacing:-0}
[ $(pidof picom) ] && MENU_RADIUS=$jgtools_radius
[ -z $jgmenu_use_borders ] && menu_border=0
mkconfigfile
cat <<EOF > ${MENU_ITEMS}
$(printf '%s\n' "${out[@]}")
$(printf '%s\n' "${out2[@]}")
EOF
jgmenu --config-file=${CONFIG_FILE} --csv-file=${MENU_ITEMS} 2>/dev/null
exit 0
2021-01-27 12:55:13 +01:00
}
__ret() {
printf '%s\n' "${out[@]}"
printf '%s\n' "${out2[@]}"
}
case "$1" in
"-r") __removable ;;
"-s") __standalone ;;
"-h"|"--help") __usage ;;
*) __usage ;;
esac
exit 0