2020-05-03 11:15:52 +02:00
|
|
|
# pylint: disable=C0111,R0903
|
2020-04-13 09:20:17 +02:00
|
|
|
|
2020-05-08 20:58:35 +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
|
|
|
|
2020-04-13 09:27:03 +02:00
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.input
|
|
|
|
import core.decorators
|
2020-04-13 09:20:17 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-13 09:27:03 +02:00
|
|
|
class Module(core.module.Module):
|
|
|
|
@core.decorators.never
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
2020-05-03 11:15:52 +02:00
|
|
|
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
|
|
|
)
|
2020-04-13 09:27:03 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-04-13 09:27:03 +02:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|