update mmtc.ron

This commit is contained in:
figsoda 2020-11-01 15:55:58 -05:00
parent c87c11c908
commit ce2dee3267

View file

@ -29,8 +29,8 @@ Config(
), ),
])), ])),
Fixed(1, Columns([ Fixed(1, Columns([
Min(0, Textbox(If(Playing, Parts([ Min(0, Textbox(If(Not(Stopped), Parts([
Text("["), If(Playing, Text("[playing: "), Text("[paused: ")),
CurrentElapsed, CurrentElapsed,
Text("/"), Text("/"),
CurrentDuration, CurrentDuration,
@ -50,12 +50,11 @@ Config(
CurrentFile, CurrentFile,
) )
])))), ])))),
Fixed(3, TextboxR(Parts([ Fixed(12, TextboxR(Parts([
If(Repeat, If(Repeat, Text("[@]")),
If(Single, Text("🔂"), Text("🔁")), If(Random, Text("[#]")),
), If(Single, Text("[^]"), If(Oneshot, Text("[!]"))),
If(Random, Text("🔀")), If(Consume, Text("[*]")),
If(Consume, Text("🔥")),
]))), ]))),
])), ])),
]), ]),