2020-04-13 13:49:38 +02:00
|
|
|
"""Displays count of running libvirt VMs.
|
2020-05-05 20:33:27 +02:00
|
|
|
|
2020-04-13 13:49:38 +02:00
|
|
|
Required the following python packages:
|
|
|
|
* libvirt
|
2020-05-08 20:58:35 +02:00
|
|
|
|
|
|
|
contributed by `maxpivo <https://github.com/maxpivo>`_ - many thanks!
|
2020-04-13 13:49:38 +02:00
|
|
|
"""
|
2020-04-13 13:52:15 +02:00
|
|
|
|
2020-04-13 13:49:38 +02:00
|
|
|
import sys
|
|
|
|
import libvirt
|
|
|
|
|
2020-04-13 13:52:15 +02:00
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.input
|
|
|
|
import core.decorators
|
2020-04-13 13:49:38 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-13 13:52:15 +02:00
|
|
|
class Module(core.module.Module):
|
|
|
|
@core.decorators.every(seconds=10)
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
|
|
|
super().__init__(config, theme, core.widget.Widget(self.status))
|
2020-04-13 13:49:38 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
core.input.register(self, button=core.input.LEFT_MOUSE, cmd="virt-manager")
|
2020-04-13 13:49:38 +02:00
|
|
|
|
|
|
|
def status(self, _):
|
|
|
|
conn = libvirt.openReadOnly(None)
|
|
|
|
if conn == None:
|
2020-05-03 11:15:52 +02:00
|
|
|
return "Failed to open connection to the hypervisor"
|
|
|
|
return "VMs %s" % (conn.numOfDomains())
|
|
|
|
|
2020-04-13 13:52:15 +02:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|