diff --git a/post-install b/post-install new file mode 100755 --- /dev/null +++ b/post-install @@ -0,0 +1,45 @@ +#!/bin/bash + +PDIRECTORY=/usr/share/pixmaps +IDIRECTORY=/usr/share/icons + +FILE=qMonitor_sideBar.png +ICON=qMonitor_icon.png + +echo -n "Checking, whether ${PDIRECTORY} exists... [ " +if [ ! -d ${PDIRECTORY} ] +then + install -d ${PDIRECTORY}; + echo "creating ]"; +else + echo "yes ]"; +fi + +echo -n "Checking, whether ${PDIRECTORY}/${FILE} exists... [ " +if [ ! -r ${PDIRECTORY}/${FILE} ] +then + install -m 644 images/sideBar.png \ + ${PDIRECTORY}/${FILE}; + echo "installing ]" + else + echo "yes ]"; +fi + +echo -n "Checking, whether ${IDIRECTORY} exists... [ " +if [ ! -d ${IDIRECTORY} ] +then + install -d ${IDIRECTORY}; + echo "creating ]"; +else + echo "yes ]"; +fi + +echo -n "Checking, whether ${IDIRECTORY}/${ICON} exists... [ " +if [ ! -r ${IDIRECTORY}/${ICON} ] +then + install -m 644 images/icon.png \ + ${IDIRECTORY}/${ICON}; + echo "installing ]" + else + echo "yes ]"; +fi