From ce2dee32678637e408ad6bd35d89d37876ffbb53 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 1 Nov 2020 15:55:58 -0500 Subject: [PATCH] update mmtc.ron --- mmtc.ron | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/mmtc.ron b/mmtc.ron index b6388cd..ad112f6 100644 --- a/mmtc.ron +++ b/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("[*]")), ]))), ])), ]),