From e05c10ea70078771831aeb19ce9b01a730c26996 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Wed, 27 Mar 2019 20:45:19 -0400 Subject: [PATCH] Use smaller mpd state symbols for pause and stop --- x2/src/awk/exe/bar.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x2/src/awk/exe/bar.awk b/x2/src/awk/exe/bar.awk index 8d611b1..1868f0e 100644 --- a/x2/src/awk/exe/bar.awk +++ b/x2/src/awk/exe/bar.awk @@ -249,9 +249,9 @@ function bar_make_status_mpd( state, status) { if (state["value"] == "play") { status = bar_make_status_mpd_state_known("▶") } else if (state["value"] == "pause") { - status = bar_make_status_mpd_state_known("❚❚") + status = bar_make_status_mpd_state_known("⏸") } else if (state["value"] == "stop") { - status = bar_make_status_mpd_state_known("⬛") + status = bar_make_status_mpd_state_known("⏹") } else { msg_out_log_error(\ "bar_make_status_mpd", \ -- 2.20.1