forked from anilgulecha/misc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsshlist.py
executable file
·102 lines (79 loc) · 2.84 KB
/
sshlist.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/python
# sshlist v0.1
# Instructions
# 1. Copy file sshlist.py (this file) to /usr/local/bin
# 2. Edit file .sshlist in home directory to add ssh host (one per line)
# 3. You can if you wish add additional ssh options. The line is appended to the ssh command
# 4. Launch sshlist.py
# 5. Or better yet, add it to gnome startup programs list so it's run on login.
# v0.1 - Initial push
# v0.11 - Add a little polish.
import gobject
import gtk
import appindicator
import os
import pynotify
ver = "0.11"
def run_program(cmd):
#returns (output, exit value)
fd=os.popen(cmd,"r")
output=fd.read()
exitvalue=fd.close()
return (output,exitvalue)
def menuitem_response(w, buf):
if buf == "_about" :
md = gtk.MessageDialog(None,0, gtk.MESSAGE_INFO,
gtk.BUTTONS_OK)
md.set_markup("<b>sshlist v%s</b>" % ver)
md.format_secondary_markup("""A simple sshmenu like replacement for appindicator menu.
To add items to menu, simple edit the file <i>.sshlist</i> in your home directory (one host per line). The line is directly appended to the ssh command.
Author: [email protected]
http://www.gulecha.org""")
md.run()
md.destroy()
elif buf == "_refresh":
newmenu = build_menu()
ind.set_menu(newmenu)
pynotify.Notification("sshlist refreshed","Menu list was refreshed from ~/.sshlist").show()
else:
print "gnome-terminal -x ssh " + buf
run_program("gnome-terminal -x ssh " + buf)
def build_menu():
# create a menu
menu = gtk.Menu()
# read in the ssh hosts list from ~/.sshlist
hosts = open(os.getenv("HOME")+"/.sshlist","r").read()
hostlist = hosts.split("\n")
while "" in hostlist:
hostlist.remove("")
# create some
for host in hostlist:
menu_items = gtk.MenuItem(host)
menu.append(menu_items)
# this is where you would connect your menu item up with a function:
menu_items.connect("activate", menuitem_response, host)
# show the items
menu_items.show()
separator = gtk.SeparatorMenuItem()
separator.show()
menu.append(separator)
menu_items = gtk.MenuItem("Refresh")
menu.append(menu_items)
menu_items.connect("activate", menuitem_response, "_refresh")
menu_items.show()
menu_items = gtk.MenuItem("About")
menu.append(menu_items)
menu_items.connect("activate", menuitem_response, "_about")
menu_items.show()
return menu
if __name__ == "__main__":
ind = appindicator.Indicator ("sshlist",
"gnome-netstatus-tx",
appindicator.CATEGORY_APPLICATION_STATUS)
ind.set_label("SSH")
ind.set_status (appindicator.STATUS_ACTIVE)
ind.set_attention_icon ("connect_creating")
# create a menu
sshmenu = build_menu()
ind.set_menu(sshmenu)
gtk.main()