-
Joined
Nov 19, 2025
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 datetime | |
| import calendar | |
| import json | |
| import re | |
| # ------------------- | |
| # Current time | |
| # ------------------- | |
| now = datetime.datetime.now() |
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 | |
| # SYS-MON MODULE | |
| # Snapshot: 19 | |
| # Version: 1.80 | |
| # Status: Stable | |
| import json | |
| import psutil | |
| import subprocess |
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 subprocess | |
| import json | |
| import os | |
| import re | |
| # ------------------- | |
| # Helper functions | |
| # ------------------- | |
| def get(cmd): |
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" |
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 requests | |
| import json | |
| import sys | |
| from datetime import datetime, timedelta | |
| import calendar | |
| import re | |
| # ---------------- AUTO-LOCATION VIA IP | |
| def get_location_by_ip(): |