diff --git a/ANNIEMUSIC/utils/inline/play.py b/ANNIEMUSIC/utils/inline/play.py index 784c9adf..79f4ae9c 100644 --- a/ANNIEMUSIC/utils/inline/play.py +++ b/ANNIEMUSIC/utils/inline/play.py @@ -31,25 +31,25 @@ def stream_markup_timer(_, chat_id, played, dur): percentage = (played_sec / duration_sec) * 100 umm = math.floor(percentage) if 0 < umm <= 10: - bar = "◉—————————" + bar = "✧━━━━━━━━━━" elif 10 < umm < 20: - bar = "—◉————————" + bar = "━━✧━━━━━━━━" elif 20 <= umm < 30: - bar = "——◉———————" + bar = "━━━━✧━━━━━━" elif 30 <= umm < 40: - bar = "———◉——————" + bar = "━━━━━✧━━━━━" elif 40 <= umm < 50: - bar = "————◉—————" + bar = "━━━━━━✧━━━━" elif 50 <= umm < 60: - bar = "—————◉————" + bar = "━━━━━━━✧━━━" elif 60 <= umm < 70: - bar = "——————◉———" + bar = "━━━━━━━━✧━━" elif 70 <= umm < 80: - bar = "———————◉——" + bar = "━━━━━━━━✧━━" elif 80 <= umm < 95: - bar = "————————◉—" + bar = "━━━━━━━━━✧━" else: - bar = "—————————◉" + bar = "━━━━━━━━━━✧" buttons = [ [ @@ -77,25 +77,25 @@ def telegram_markup_timer(_, chat_id, played, dur): percentage = (played_sec / duration_sec) * 100 umm = math.floor(percentage) if 0 < umm <= 10: - bar = "◉—————————" + bar = "✧━━━━━━━━━━" elif 10 < umm < 20: - bar = "—◉————————" + bar = "━━✧━━━━━━━━" elif 20 <= umm < 30: - bar = "——◉———————" + bar = "━━━━✧━━━━━━" elif 30 <= umm < 40: - bar = "———◉——————" + bar = "━━━━━✧━━━━━" elif 40 <= umm < 50: - bar = "————◉—————" + bar = "━━━━━━✧━━━━" elif 50 <= umm < 60: - bar = "—————◉————" + bar = "━━━━━━━✧━━━" elif 60 <= umm < 70: - bar = "——————◉———" + bar = "━━━━━━━━✧━━" elif 70 <= umm < 80: - bar = "———————◉——" + bar = "━━━━━━━━✧━━" elif 80 <= umm < 95: - bar = "————————◉—" + bar = "━━━━━━━━━✧━" else: - bar = "—————————◉" + bar = "━━━━━━━━━━✧" buttons = [ [