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