Adding the ability to change the editor to module todo
This commit is contained in:
parent
e560649531
commit
7756eaaa31
1 changed files with 2 additions and 1 deletions
|
@ -21,9 +21,10 @@ class Module(core.module.Module):
|
||||||
super().__init__(config, theme, core.widget.Widget(self.output))
|
super().__init__(config, theme, core.widget.Widget(self.output))
|
||||||
|
|
||||||
self.__doc = os.path.expanduser(self.parameter("file", "~/Documents/todo.txt"))
|
self.__doc = os.path.expanduser(self.parameter("file", "~/Documents/todo.txt"))
|
||||||
|
self.__editor = self.parameter("editor", "xdg-open")
|
||||||
self.__todos = self.count_items()
|
self.__todos = self.count_items()
|
||||||
core.input.register(
|
core.input.register(
|
||||||
self, button=core.input.LEFT_MOUSE, cmd="xdg-open {}".format(self.__doc)
|
self, button=core.input.LEFT_MOUSE, cmd="{} {}".format(self.__editor, self.__doc)
|
||||||
)
|
)
|
||||||
|
|
||||||
def output(self, widget):
|
def output(self, widget):
|
||||||
|
|
Loading…
Reference in a new issue