From a820b50bf934b509fb5cf2ce80a48992106488d2 Mon Sep 17 00:00:00 2001 From: James Walker Date: Fri, 2 Oct 2020 09:41:21 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=20clean=20up=20old,=20unused=20stu?= =?UTF-8?q?ff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitmodules | 0 home/.default-npm-packages | 1 - home/bin/ircnotify.sh | 21 --------------------- home/bin/pychecker.sh | 3 --- 4 files changed, 25 deletions(-) delete mode 100644 .gitmodules delete mode 100755 home/bin/ircnotify.sh delete mode 100755 home/bin/pychecker.sh diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index e69de29..0000000 diff --git a/home/.default-npm-packages b/home/.default-npm-packages index 7ba7c39..352b09a 100644 --- a/home/.default-npm-packages +++ b/home/.default-npm-packages @@ -1,5 +1,4 @@ expo-cli -gatsby-cli react-native-cli watchman yarn diff --git a/home/bin/ircnotify.sh b/home/bin/ircnotify.sh deleted file mode 100755 index d7fe78f..0000000 --- a/home/bin/ircnotify.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/zsh -notify() -{ - heading=$1 - message=$2 - if [ `uname` = "Darwin" ]; then - growlnotify -t ${heading} -m ${message} - else - notify-send ${heading} ${message} - fi -} - -# Avoid spawning script twice. -ps aux | grep ircnotify.sh | grep -v grep | grep -v $$ && exit - -(ssh irc.walkah.net -o PermitLocalCommand=no \ - ": > .irssi/fnotify ; tail -f .irssi/fnotify " | \ - while read heading message; do \ - notify "${heading}" "${message}"; \ - done)& - diff --git a/home/bin/pychecker.sh b/home/bin/pychecker.sh deleted file mode 100755 index 0dd8683..0000000 --- a/home/bin/pychecker.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/zsh -pyflakes $1 -pep8 --repeat $1