mirror of
https://github.com/bvanroll/_dotfiles.git
synced 2025-08-29 20:12:42 +00:00
36 lines
897 B
Python
Executable File
36 lines
897 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
A Github block for displaying notifications in i3 using i3blocks
|
|
"""
|
|
|
|
__author__ = "Adin Hodovic <hodovicadin@gmail.com>"
|
|
__copyright__ = "Copyright (c) 2020 Adin Hodovic"
|
|
__license__ = "MIT"
|
|
__version__ = "1.0.0"
|
|
|
|
import json
|
|
import os
|
|
import webbrowser
|
|
|
|
|
|
def get_notifications():
|
|
notifications = len(json.loads(os.popen("gh api notifications").read()))
|
|
|
|
if notifications > 0:
|
|
return {
|
|
"full_text": f"<span font='Font Awesome 5 Free Solid'> {notifications}</span>"
|
|
}
|
|
return {"full_text": "<span font='Font Awesome 5 Free Solid'></span>"}
|
|
|
|
|
|
def clicked():
|
|
"""Returns True if the button was clicked"""
|
|
button = "BLOCK_BUTTON" in os.environ and os.environ["BLOCK_BUTTON"]
|
|
return bool(button)
|
|
|
|
|
|
if clicked():
|
|
webbrowser.open("https://github.com/notifications")
|
|
|
|
print(json.dumps(get_notifications()))
|