diff options
author | NeodarZ <neodarz@neodarz.net> | 2017-07-29 20:26:52 +0200 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.net> | 2017-07-29 20:26:52 +0200 |
commit | 4193f81b8fb5a450d53221a1a9c8fdc5fc44ffa9 (patch) | |
tree | 448679ca0fde13202d0f3726d669e0f7b30d594f /herbstluftwm/bin/herbstluftwm-remove-gap | |
parent | 13869d0876c5d53e45e58d42ef1eadd518a9c6dc (diff) | |
download | dotfiles_ascii-4193f81b8fb5a450d53221a1a9c8fdc5fc44ffa9.tar.xz dotfiles_ascii-4193f81b8fb5a450d53221a1a9c8fdc5fc44ffa9.zip |
Remove herbstluftwm conf
Diffstat (limited to 'herbstluftwm/bin/herbstluftwm-remove-gap')
-rwxr-xr-x | herbstluftwm/bin/herbstluftwm-remove-gap | 12 |
1 files changed, 0 insertions, 12 deletions
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" |