From 644ba9389a38fb13e617d765268c29224af7db21 Mon Sep 17 00:00:00 2001 From: Eugene Suter Date: Sun, 10 Oct 2010 20:23:18 -0500 Subject: desktop/i3status: Added (status line generator for dzen2 / xmobar) Signed-off-by: Robby Workman --- desktop/i3status/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 desktop/i3status/doinst.sh (limited to 'desktop/i3status/doinst.sh') diff --git a/desktop/i3status/doinst.sh b/desktop/i3status/doinst.sh new file mode 100644 index 0000000000..04630cd0a7 --- /dev/null +++ b/desktop/i3status/doinst.sh @@ -0,0 +1,15 @@ +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/i3status.conf.new + -- cgit v1.2.3