statusbar: update nerdfont glyphs

As of https://github.com/ryanoasis/nerd-fonts/issues/1096
nf-mdi* glyphs are marked obsolete in nerd-fonts upstream

Update the glyphs to non-deprecated nf-fa* counterparts
This commit is contained in:
Collin Lefeber
2023-03-18 11:51:15 -04:00
committed by Henrik Friedrichsen
parent 7dce6b988d
commit dcfb820c13

View File

@@ -47,9 +47,9 @@ impl StatusBar {
.flip_status_indicators
.unwrap_or(false);
const NF_PLAY: &str = "\u{f909} ";
const NF_PAUSE: &str = "\u{f8e3} ";
const NF_STOP: &str = "\u{f9da} ";
const NF_PLAY: &str = "\u{f04b} ";
const NF_PAUSE: &str = "\u{f04c} ";
const NF_STOP: &str = "\u{f04d} ";
let indicators = match (nerdfont, flipped) {
(false, false) => ("", "▮▮", ""),
(false, true) => ("▮▮", "", ""),