mirror of
https://github.com/figsoda/mmtc
synced 2024-11-22 07:03:05 +00:00
update mmtc.ron
This commit is contained in:
parent
c87c11c908
commit
ce2dee3267
1 changed files with 7 additions and 8 deletions
15
mmtc.ron
15
mmtc.ron
|
@ -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("[*]")),
|
||||
]))),
|
||||
])),
|
||||
]),
|
||||
|
|
Loading…
Reference in a new issue