-
I tried to add an ssh connection to my laucher menu. but somehow i am missing something or it does not work this way; my config part: local launch_menu = { |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's not clear from your post whether you have a full config file; you want something like this: return {
launch_menu = {
{
label = "server x",
args = {"ssh", "[email protected]"},
},
},
} The launch menu is itself an array of launch menu items, so pay attention to how many Are you experiencing an error, or is what you're trying not producing a menu item, or is the menu item there, but not doing what you expect? |
Beta Was this translation helpful? Give feedback.
It's not clear from your post whether you have a full config file; you want something like this:
The launch menu is itself an array of launch menu items, so pay attention to how many
{}
you have around your menu definition!Are you experiencing an error, or is what you're trying not producing a menu item, or is the menu item there, but not doing what you expect?