diff options
author | John Vogel <jvogel4@stny.rr.com> | 2014-03-31 11:59:14 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-07 14:43:36 +0700 |
commit | f714a15f4b84df6eda6e1dd0dc933342d5181d1d (patch) | |
tree | 6f33e722c4d5ac66e2f750de17f22706014b50c4 /desktop/bspwm/doinst.sh | |
parent | 581b0ac67e9191678de1841aef8e135c73240346 (diff) | |
download | slackbuilds-f714a15f4b84df6eda6e1dd0dc933342d5181d1d.tar.gz |
desktop/bspwm: Updated for version 0.8.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/bspwm/doinst.sh')
-rw-r--r-- | desktop/bspwm/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/desktop/bspwm/doinst.sh b/desktop/bspwm/doinst.sh deleted file mode 100644 index e6b2addd81..0000000000 --- a/desktop/bspwm/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/X11/xinit/xinitrc.bspwm.new |