diff options
author | Camil Staps | 2021-06-28 12:22:48 +0200 |
---|---|---|
committer | Camil Staps | 2021-06-28 12:22:48 +0200 |
commit | a73acb9b474ce77af4bc54657d32bd2714ce53ec (patch) | |
tree | 1016bbbb59b629c0e905fce3a0b464a40f6f97a2 /i3/bin/setbg-cloogle | |
parent | Add vim settings for gas and cabal (diff) |
Cleanup binaries
Diffstat (limited to 'i3/bin/setbg-cloogle')
-rwxr-xr-x | i3/bin/setbg-cloogle | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/i3/bin/setbg-cloogle b/i3/bin/setbg-cloogle deleted file mode 100755 index f205a80..0000000 --- a/i3/bin/setbg-cloogle +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# Test internet -timeout 4 wget -q --spider http://cloogle.org || setbg-backup || exit 1 - -stdbuf -i0 -o0 -e0 cloogle_stats.py | while read request -do - if [ "$request" == "Opened connection." ] || [ "$request" == "Lost connection" ]; then - continue - fi - echo "$request" | pygmentize -l clean -O line_numbers=false -o /tmp/bg-cloogle.png - feh -B white --bg-center /tmp/bg-cloogle.png -done & |