mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
12 lines
378 B
Bash
12 lines
378 B
Bash
#!/bin/bash
|
|
|
|
token=$(cat "${HOME}"/.config/github/notifications.token)
|
|
count=$(curl -u kristoferssolo:"${token}" https://api.github.com/notifications | jq '. | length')
|
|
|
|
# if [[ "$count" != "0" ]]; then
|
|
# echo "{'text':$(count),'tooltip':$(tooltip),'class':$(class)}"
|
|
# fi
|
|
if [[ "$count" != "0" ]]; then
|
|
echo '{"text":'$count',"tooltip":"$tooltip","class":"$class"}'
|
|
fi
|