summaryrefslogtreecommitdiffstats
path: root/games/glxosd/doinst.sh
diff options
context:
space:
mode:
author Eric Fernandes Ferreira2015-07-15 02:51:39 +0200
committer Robby Workman2015-07-16 17:57:23 +0200
commit126592b2bb278dd47814faa4929d04a10bf58cd1 (patch)
treeaebcbb924f772d1c257cbeb4800422afca7a158b /games/glxosd/doinst.sh
parent961891a34f6ccae46000b3f4fae7bdcadfa336bd (diff)
downloadslackbuilds-126592b2bb278dd47814faa4929d04a10bf58cd1.tar.gz
games/glxosd: Added (on-screen display).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/glxosd/doinst.sh')
-rw-r--r--games/glxosd/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/games/glxosd/doinst.sh b/games/glxosd/doinst.sh
new file mode 100644
index 0000000000..b91c4ec6c3
--- /dev/null
+++ b/games/glxosd/doinst.sh
@@ -0,0 +1,26 @@
+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/glxosd.new
+
+# Update the X font indexes:
+if [ -x /usr/bin/mkfontdir ]; then
+ ( cd /usr/share/fonts/TTF
+ mkfontscale .
+ mkfontdir .
+ )
+fi
+
+if [ -x /usr/bin/fc-cache ]; then
+ /usr/bin/fc-cache -f
+fi