Window manager does not start in release 0.0.3
Closed this issue · 2 comments
ArneBachmann commented
SnakeWM.run()
Traceback
TypeError: run() missing 1 required positional argument: 'self'
joshiemoore commented
Hello, you should type:
>>> from snakewm.wm import SnakeWM
>>> SnakeWM().run()
in the interpreter, and it will run for you.
Also, you could just type snakewm
by itself and snakewm will start that way too.
ArneBachmann commented
My bad, forgot to run the constructor ()
on the class.