Skip to content

Instantly share code, notes, and snippets.

@Balthazzahr
Created November 25, 2025 23:15
Show Gist options
  • Select an option

  • Save Balthazzahr/9274a37f54543522142e4b533b123fa4 to your computer and use it in GitHub Desktop.

Select an option

Save Balthazzahr/9274a37f54543522142e4b533b123fa4 to your computer and use it in GitHub Desktop.
#!/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