From 9e1e6ccedf25a8e76d346a8ff3014dfe98c5924a Mon Sep 17 00:00:00 2001
From: neodarz <neodarz@neodarz.net>
Date: Sat, 22 Apr 2017 14:40:50 +0200
Subject: Remove some useless conf file

---
 herbstluftwm/bin/calendar                | 15 ---------------
 herbstluftwm/bin/herbstluftwm-add-gap    | 12 ------------
 herbstluftwm/bin/herbstluftwm-remove-gap | 12 ------------
 3 files changed, 39 deletions(-)
 delete mode 100755 herbstluftwm/bin/calendar
 delete mode 100755 herbstluftwm/bin/herbstluftwm-add-gap
 delete mode 100755 herbstluftwm/bin/herbstluftwm-remove-gap

(limited to 'herbstluftwm/bin')

diff --git a/herbstluftwm/bin/calendar b/herbstluftwm/bin/calendar
deleted file mode 100755
index 28199ae..0000000
--- a/herbstluftwm/bin/calendar
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# popup calendar for dzen
-font="-Gohu-GohuFont-Medium-R-Normal--11-80-100-100-C-60-ISO10646-1"
-TODAY=$(expr `date +'%d'` + 0)
-MONTH=`date +'%m'`
-YEAR=`date +'%Y'`
-LINES=$(cal -m | wc -l)
-LINES=$((LINES + 2))
-
-(
-date +'^bg(#111111) '
-date +''
-# current month, highlight header and today
-cal -m | sed -r -e "1,2 s/.*/^fg(#d3d3d3)&^fg()/"  -e "s/(^| )($TODAY)($| )/\1^bg(#6A8C8C)^fg(#111111)\2^fg()^bg()\3/") | dzen2 -x 0 -y 16 -w 146 -h 12 -l $LINES -sa c -p -e 'onstart=uncollapse,hide;button1=exit;' -fg "#d3d3d3" -tw 6 -fn "$font"
-)
diff --git a/herbstluftwm/bin/herbstluftwm-add-gap b/herbstluftwm/bin/herbstluftwm-add-gap
deleted file mode 100755
index cc5492c..0000000
--- a/herbstluftwm/bin/herbstluftwm-add-gap
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-filename="/tmp/herbstluftwm-gap"
-while read -r line
-do
-	gap=$line
-	if [ "$gap" -le 90 ]
-	then
-		gap=$((gap+7))
-		herbstclient set window_gap $gap
-		echo $gap > $filename
-	fi
-done < "$filename"
diff --git a/herbstluftwm/bin/herbstluftwm-remove-gap b/herbstluftwm/bin/herbstluftwm-remove-gap
deleted file mode 100755
index b30b3eb..0000000
--- a/herbstluftwm/bin/herbstluftwm-remove-gap
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-filename="/tmp/herbstluftwm-gap"
-while read -r line
-do
-	gap=$line
-	if [ "$gap" -ge 7 ]
-	then
-		gap=$((gap-7))
-		herbstclient set window_gap $gap
-		echo $gap > $filename
-	fi
-done < "$filename"
-- 
cgit v1.2.1