3a531c359f
Add access for all modules to the commandline parameters (called "config" in bumblebee-status)
14 lines
332 B
Python
14 lines
332 B
Python
# pylint: disable=C0111,R0903
|
|
|
|
"""Shows Linux kernel version information"""
|
|
|
|
import platform
|
|
|
|
import core.module
|
|
import core.widget
|
|
|
|
class Module(core.module.Module):
|
|
def __init__(self, config=None):
|
|
super().__init__(config, core.widget.Widget(platform.release()))
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|