We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf18f4b commit 0ed43faCopy full SHA for 0ed43fa
zulipterminal/config/symbols.py
@@ -19,5 +19,6 @@
19
STATUS_IDLE = "◒"
20
STATUS_OFFLINE = "○"
21
STATUS_INACTIVE = "•"
22
+BOT_MARKER = "♟"
23
AUTOHIDE_TAB_LEFT_ARROW = "❰"
24
AUTOHIDE_TAB_RIGHT_ARROW = "❱"
zulipterminal/config/ui_mappings.py
@@ -4,6 +4,7 @@
4
5
from zulipterminal.api_types import EditPropagateMode
6
from zulipterminal.config.symbols import (
7
+ BOT_MARKER,
8
STATUS_ACTIVE,
9
STATUS_IDLE,
10
STATUS_INACTIVE,
@@ -27,6 +28,7 @@
27
28
"idle": STATUS_IDLE,
29
"offline": STATUS_OFFLINE,
30
"inactive": STATUS_INACTIVE,
31
+ "bot": BOT_MARKER,
32
}
33
34
0 commit comments