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.
Entry-Example.md
Go to the documentation of this file.
1 An entry plugin adds a new menu item in the Remmina main menu (the burger menu on the top right).
2 
3 ```python
4 import remmina
5 
6 class PluginEntry:
7  def __init__(self):
8  self.name = "Entry by Python"
9  self.type = "file"
10  self.description = "Shiny menu entry"
11  self.version = "1.0"
12 
13  def entry_func(self):
14  # Do something on click
15  return None
16 
17 myEntryPlugin = PluginEntry()
18 remmina.register_plugin(myEntryPlugin)
19 ```