Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Tool-Example
import remmina
class PluginTool:
def __init__(self):
self.button = None
# The name shown in the plugin list
self.name = "Python Tool Plugin"
self.type = "tool"
# The description will be the label of the menu item!
self.description = "Press me!"
self.version = "1.0"
def exec_func(self):
print("exec_func has been called!")
myToolPlugin = PluginTool()
remmina.register_plugin(myToolPlugin)