diff options
author | Andrew Payne <phalange@komputermatrix.com> | 2020-09-04 20:35:23 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-09-04 20:35:23 +0700 |
commit | 4f78942d46b2136e743576645ade2181c0668b3b (patch) | |
tree | 4d2ec65d3989c81f06d7162e8ca90ef54b944efc /desktop/spectrwm/doinst.sh | |
parent | 272c8767625cb885fc6bf9a34954189df390a853 (diff) |
desktop/spectrwm: Updated for version 3.4.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/spectrwm/doinst.sh')
-rw-r--r-- | desktop/spectrwm/doinst.sh | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/desktop/spectrwm/doinst.sh b/desktop/spectrwm/doinst.sh index 365e691611..c0ac6b9cb0 100644 --- a/desktop/spectrwm/doinst.sh +++ b/desktop/spectrwm/doinst.sh @@ -1,5 +1,19 @@ +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.spectrwm.new +config etc/spectrwm.conf.new + if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi - -[ -x /sbin/ldconfig ] && /sbin/ldconfig 2>/dev/null |