diff --git a/polybar/.config/polybar/scripts/github/notifications b/polybar/.config/polybar/scripts/github/notifications deleted file mode 100755 index adf0afeef..000000000 --- a/polybar/.config/polybar/scripts/github/notifications +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -USER="The-Repo-Club" -TOKEN="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" - -notifications=$(echo "user = \"$USER:$TOKEN\"" | curl -sf -K- "https://api.github.com/notifications?per_page=100" | jq ".[].unread" | grep -c true) - -echo "$notifications Notifications" diff --git a/polybar/.config/polybar/scripts/github/repositories b/polybar/.config/polybar/scripts/github/repositories deleted file mode 100755 index ff9293f39..000000000 --- a/polybar/.config/polybar/scripts/github/repositories +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -USER="The-Repo-Club" -TOKEN="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" - -repositories=$(echo "user = \"$USER:$TOKEN\"" | curl -sf -K- "https://api.github.com/users/$USER/repos?per_page=100&type=all" | jq ".[].id" | wc -l) - -echo "$repositories Repositories"