bumblebee-status/bumblebee_status/modules/contrib/xkcd.py

26 lines
613 B
Python
Raw Normal View History

# pylint: disable=C0111,R0903
2020-04-13 09:20:17 +02:00
"""Opens a random xkcd comic in the browser.
contributed by `whzup <https://github.com/whzup>`_ - many thanks!
"""
2020-04-13 09:20:17 +02:00
import core.module
import core.widget
import core.input
import core.decorators
2020-04-13 09:20:17 +02:00
class Module(core.module.Module):
@core.decorators.never
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget("xkcd"))
core.input.register(
self,
button=core.input.LEFT_MOUSE,
cmd="xdg-open https://c.xkcd.com/random/comic/",
2020-04-13 09:20:17 +02:00
)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4