Skip to content

gnome shell extension for fast open usual ssh connections.

License

Notifications You must be signed in to change notification settings

scaamanho/sshindicator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

SSH Indicator 2.0

gnome shell extesion for fast open usual ssh connections.

Edit Connections

While I get enought time to create a GUI that allow manage connections you can manage them in old-school way:

Edit file ~/.local/share/gnome-shell/extensions/[email protected]/config.js and modify the variable data at end of file to create new connections

Connection parameters

  • group : first level group name
  • name : connection name
  • host : ip or host domain
  • user : user to connect to remote host [optional]
  • options : ssh client options [optional]
  • port: host port [optional]
var data = [{
		group: "Server Group 1",
		servers:[{
			name: "SSH 127.0.0.1",
			host: "127.0.0.1",
			user: "scaamanho",
			options: ["-X"]
		},
		{
			name: "SSH[22] 127.0.0.1",
			host: "127.0.0.1",
			user: "scaamanho",
			options: ["-X"],
			port: 22
		},
		{
			name: "SSH[USR] 127.0.0.1",
			host: "127.0.0.1"
		}]
	},

	{
		group: "Server Group 2",
		servers:[{
			name: "SSH 127.0.0.1",
			host: "127.0.0.1",
			user: "scaamanho",
			options: ["-X"]
		},
		{
			name: "SSH[22] 127.0.0.1",
			host: "127.0.0.1",
			user: "scaamanho",
			options: ["-X"],
			port: 22
		},
		{
			name: "SSH[USR] 127.0.0.1",
			host: "127.0.0.1"
		}]
	}];