From 7bab821f2080e2f8d8a6285e57824dc738e1e781 Mon Sep 17 00:00:00 2001 From: streetturtle Date: Mon, 4 Feb 2019 20:10:00 -0500 Subject: fix email widget script --- email-widget/count_unread_emails.py | 8 ++++---- run-shell/scratch_6.sh | 13 ------------- 2 files changed, 4 insertions(+), 17 deletions(-) delete mode 100755 run-shell/scratch_6.sh diff --git a/email-widget/count_unread_emails.py b/email-widget/count_unread_emails.py index f4d2b86..a843814 100644 --- a/email-widget/count_unread_emails.py +++ b/email-widget/count_unread_emails.py @@ -1,7 +1,7 @@ #!/usr/bin/python import imaplib -import email +import re M=imaplib.IMAP4_SSL("mail.teenagemutantninjaturtles.com", 993) M.login("mickey@tmnt.com","cowabunga") @@ -9,8 +9,8 @@ M.login("mickey@tmnt.com","cowabunga") status, counts = M.status("INBOX","(MESSAGES UNSEEN)") if status == "OK": - unread = counts[0].split()[4][:-1] + unread = re.search(r'UNSEEN\s(\d+)', counts[0].decode('utf-8')).group(1) else: - unread = "N/A" + unread = "N/A" -print(unread) \ No newline at end of file +print(unread) diff --git a/run-shell/scratch_6.sh b/run-shell/scratch_6.sh deleted file mode 100755 index 7edad8c..0000000 --- a/run-shell/scratch_6.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -#RES=$(xrandr --current | grep '*' | uniq | awk '{print $1}') -RNDM=$(uuidgen) -IMAGE="/tmp/i3lock-$RNDM.png" - - -## blur -#ffmpeg -loglevel panic -f x11grab -video_size 1920x1060 -y -i :0.0+0,20 -filter_complex "boxblur=9" -vframes 1 $IMAGE -## pixelate -ffmpeg -loglevel panic -f x11grab -video_size 1920x1060 -y -i :0.0+$1,20 -vf frei0r=pixeliz0r -vframes 1 $IMAGE - -echo $RNDM \ No newline at end of file -- cgit v1.2.3