mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-21 14:09:06 -04:00
Added signal stats to announce stream
This commit is contained in:
parent
887c0a9a16
commit
15600d5172
3 changed files with 76 additions and 23 deletions
|
@ -111,6 +111,20 @@ def multilingual_markup(data):
|
|||
|
||||
return do.encode("utf-8")
|
||||
|
||||
def sig_icon_for_q(q):
|
||||
if q == None:
|
||||
return ""
|
||||
elif q > 90:
|
||||
return ""
|
||||
elif q > 70:
|
||||
return ""
|
||||
elif q > 50:
|
||||
return ""
|
||||
elif q > 30:
|
||||
return ""
|
||||
elif q > 10:
|
||||
return ""
|
||||
|
||||
persistent_fonts = ["nf", "term"]
|
||||
nf_mapped = "nf"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue