make the statusbar program actually work
This commit is contained in:
parent
a0866a7bfd
commit
5620e61f31
|
@ -144,7 +144,10 @@ def render(modules) -> str:
|
||||||
stdout.flush()
|
stdout.flush()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
os.mkdir("/home/usr/.cache/statusbar")
|
try:
|
||||||
|
os.mkdir("/home/usr/.cache/statusbar")
|
||||||
|
except FileExistsError:
|
||||||
|
pass
|
||||||
|
|
||||||
if argv[1] == "start_statusbars":
|
if argv[1] == "start_statusbars":
|
||||||
# get the monitors
|
# get the monitors
|
||||||
|
|
Loading…
Reference in New Issue