[core] Add right-to-left output

This commit is contained in:
tobi-wan-kenobi 2020-05-01 15:17:55 +02:00
parent f087dbcee4
commit 4daae88a7c
2 changed files with 9 additions and 0 deletions

View file

@ -68,6 +68,10 @@ def main():
for module in config.modules():
modules.append(core.module.load(module, config, theme))
if config.reverse():
modules.reverse()
output.modules(modules)
core.event.trigger('start')
while True: