From 16647ff03e6a913874085bff186f83324586df5b Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Sat, 13 Apr 2024 21:01:31 -0400 Subject: [PATCH] Remove projector --- bin/projector | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 bin/projector diff --git a/bin/projector b/bin/projector deleted file mode 100755 index 1b7afeb..0000000 --- a/bin/projector +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -################################################################################ -# -# projector -# Updates ${HOME}/Projects against the public repos at git.tty.dog -# -# Requires jq -# -################################################################################ - -# Ensure ${HOME}/Projects exists and set it as the working directory -PROJECTS_DIR="${HOME}/Projects" -if [ ! -d "${PROJECTS_DIR}" ]; then - mkdir "${PROJECTS_DIR}" - set-icon "${PROJECTS_DIR}" folder-code -fi -cd "${PROJECTS_DIR}" - -# Perform a blobless clone of all public repos at git.tty.dog -API_URL="https://git.tty.dog/api/v1/repos/search" -for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].clone_url"); do - git clone --no-checkout --filter=blob:none "${CLONE_URL}" -done