[modules] Add NIC module
Add a module that displays the status of all NICs (interface name, list of IPs and state). In its status, it also exposes whether it's a WiFi or a wired NIC. For this functionality, additional code was implemented to allow a module to add multiple elements to the bar at once. The framework calls the module until its "next()" method return False.
This commit is contained in:
parent
dbd8ccb83f
commit
0f6b418385
4 changed files with 103 additions and 19 deletions
|
@ -15,4 +15,7 @@ class Module(object):
|
|||
def state(self):
|
||||
return "default"
|
||||
|
||||
def next(self):
|
||||
return False
|
||||
|
||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue