Created
November 25, 2025 23:15
-
-
Save Balthazzahr/9274a37f54543522142e4b533b123fa4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import json | |
| # Colors | |
| icon_color = "#8FCB9B" # pastel green | |
| line_color = "#cdd6f4" # default line color | |
| # Pango markup: line + Spotify logo icon with spaces | |
| text = f"<span foreground='{line_color}'>|</span>\u00A0<span foreground='{icon_color}'></span>\u00A0" | |
| print(json.dumps({ | |
| "text": text, | |
| "markup": "pango" | |
| })) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment