diff options
author | Симонъ С. Болокановъ <sbolokanov@abv.bg> | 2019-04-12 22:31:40 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-04-12 22:31:40 +0700 |
commit | 1db8282881d89ca56689519949f9fe419e7c4759 (patch) | |
tree | 59c4c6f48629f1601cd7f2b5ea48b832372f4b67 /desktop/dunst/doinst.sh | |
parent | 1f8de6f8c071f9d62f00f0b572a654379853cada (diff) |
desktop/dunst: Updated for version 1.4.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/dunst/doinst.sh')
-rw-r--r-- | desktop/dunst/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/desktop/dunst/doinst.sh b/desktop/dunst/doinst.sh deleted file mode 100644 index c3a0ab28b995..000000000000 --- a/desktop/dunst/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/xdg/dunst/dunstrc.new |