From 842fa51f0c8fcaf1915a1ec6de03c34efe6511f2 Mon Sep 17 00:00:00 2001 From: The-Repo-Club Date: Sun, 6 Feb 2022 13:12:14 +0000 Subject: [PATCH] Update Dotfiles Signed-off-by: The-Repo-Club --- polybar/.config/polybar/scripts/github/notifications | 8 -------- polybar/.config/polybar/scripts/github/repositories | 8 -------- 2 files changed, 16 deletions(-) delete mode 100755 polybar/.config/polybar/scripts/github/notifications delete mode 100755 polybar/.config/polybar/scripts/github/repositories 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"