aboutsummaryrefslogtreecommitdiff
path: root/mutt/notify.sh
diff options
context:
space:
mode:
Diffstat (limited to 'mutt/notify.sh')
-rwxr-xr-xmutt/notify.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/mutt/notify.sh b/mutt/notify.sh
deleted file mode 100755
index a628c52..0000000
--- a/mutt/notify.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-# Note to make xset led 1 and 2 work:
-#
-# /usr/share/X11/xkb/compat/ledcaps
-# /usr/share/X11/xkb/compat/lednum
-# and replace:
-# !allowExplicit;
-# with:
-# allowExplicit;
-#
-#####################k
-# Turns on CapsLock
-#
-
-echo "$1"
-echo "$1" | grep -q "New" > /dev/null 2>&1
-status=$?
-
-if [ $status -eq 0 ];then
- xset led 1
- touch ~/.mutt/newmail
-else
- xset -led 1
-if [ -e ~/.mutt/newmail ];then
- rm ~/.mutt/newmail
-fi
-fi