Skip to content

Commit

Permalink
Updated nerd font glyphs. Fixes #55.
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed May 18, 2024
1 parent c2fb2ca commit 51f0048
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions nomadnet/ui/TextUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@
}

if platform.system() == "Darwin":
urm_char = " \uf0e0 "
urm_char = " \uf0e0"
ur_char = "\uf0e0 "
else:
urm_char = " \uf003 "
urm_char = " \uf003"
ur_char = "\uf003 "

GLYPHS = {
Expand All @@ -115,17 +115,17 @@
("arrow_u", "/\\", "\u2191", "\u2191"),
("arrow_d", "\\/", "\u2193", "\u2193"),
("warning", "!", "\u26a0", "\uf12a"),
("info", "i", "\u2139", "\ufb4d"),
("info", "i", "\u2139", "\U000f064e"),
("unread", "[!]", "\u2709", ur_char),
("divider1", "-", "\u2504", "\u2504"),
("peer", "[P]", "\u24c5 ", "\uf415"),
("node", "[N]", "\u24c3 ", "\uf502"),
("node", "[N]", "\u24c3 ", "\U000f0002"),
("page", "", "\u25a4 ", "\uf719 "),
("speed", "", "\u25F7 ", "\uf9c4"),
("decoration_menu", " +", " +", " \uf93a"),
("speed", "", "\u25F7 ", "\U000f04c5 "),
("decoration_menu", " +", " +", " \U000f043b"),
("unread_menu", " !", " \u2709", urm_char),
("globe", "", "", "\uf484"),
("sent", "/\\", "\u2191", "\ufbf4"),
("sent", "/\\", "\u2191", "\U000f0cd8"),
("papermsg", "P", "\u25a4", "\uf719"),
("qrcode", "QR", "\u25a4", "\uf029"),
}
Expand Down
2 changes: 1 addition & 1 deletion nomadnet/ui/textui/Guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ def focus_reader(self):
Unicode Glyphs : \u2713 \u2715 \u26a0 \u24c3 \u2193
Nerd Font Glyphs : \uf484 \uf9c4 \uf719 \uf502 \uf415 \uf023 \uf06e
Nerd Font Glyphs : \uf484 \U000f04c5 \U000f0219 \U000f0002 \uf415 \uf023 \uf06e
'''


Expand Down

0 comments on commit 51f0048

Please sign in to comment.