ibrokemycomputer / gnome-shell-extension-ssh-quick-connect

Adds launchers for all items in your ssh config file to a dropdown in the panel.
11 stars 8 forks source link

Use terminals other than nano. Add setting-entry to set your own terminal and exec-command. #21

Open careca1970 opened 10 months ago

careca1970 commented 10 months ago

Hi there! Thanks for maintaining this extension!

Now it does not work with other terminals than "nano".

Just for my own use, I changed the following lines in the code to make it work with "gnome-terminal":

getTerminalCommand() {
<...>
    const SSH_COMMAND = ' -- ssh';
    let LINUX_TERMINAL = 'gnome-terminal';
<...>
}

Please include such fields in the settings if possible, so that users can configure their own terminal!