Fix typos

This commit is contained in:
Ximi1970
2020-11-22 17:20:43 +01:00
parent e5174bf3df
commit 21c5e0df4f
2 changed files with 36 additions and 60 deletions

View File

@@ -20,7 +20,6 @@ makedepends=(
'zip'
'libx11'
'qt5-base'
'notifications'
)
provides=(
'systray-x'
@@ -58,81 +57,58 @@ package() {
}
post_install() {
PROF_DIR=/etc/dconf/profile
PROF_FILE=user
PROF_DIR="/etc/dconf/profile"
PROF_FILE="user"
if [ -f $PROF_DIR/$PROF_FILE ] ; then
if [ -f ${PROF_DIR}/${PROF_FILE} ] ; then
#
# Edit user file
#
grep -q "user-db:user" $PROF_DIR/$PROF_FILE
grep -q "user-db:user" ${PROF_DIR}/${PROF_FILE}
if [ "$?" = "1" ] ; then
echo "user-db:user" >> $PROF_DIR/$PROF_FILE
echo "user-db:user" >> ${PROF_DIR}/${PROF_FILE}
fi
grep -q "system-db:local" $PROF_DIR/$PROF_FILE
grep -q "system-db:local" ${PROF_DIR}/${PROF_FILE}
if [ "$?" = "1" ] ; then
echo "system-db:local" >> $PROF_DIR/$PROF_FILE
echo "system-db:local" >> ${PROF_DIR}/${PROF_FILE}
fi
else
#
# Generate user file
#
mkdir -p $PROF_DIR
cat >$PROF_DIR/$PROF_FILE <<EOF
mkdir -p ${PROF_DIR}
cat >${PROF_DIR}/${PROF_FILE} <<EOF
user-db:user
system-db:local
EOF
fi
fi
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
CONF_DIR="/etc/dconf/db/local.d"
CONF_FILE="00-extensions"
DEB_VENDOR=$(cat /etc/dpkg/origins/default | grep Vendor: | sed -e "s/Vendor: //")
case $DEB_VENDOR in
Debian)
EXTENSION="ubuntu-appindicators@ubuntu.com"
;;
Ubuntu)
RELEASE=$(lsb_release -rs)
case $RELEASE in
16.04)
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
;;
*)
EXTENSION="ubuntu-appindicators@ubuntu.com"
;;
esac
;;
*)
EXTENSION="ubuntu-appindicators@ubuntu.com"
;;
esac
CONF_DIR=/etc/dconf/db/local.d
CONF_FILE=00-extensions
if [ -f $CONF_DIR/$CONF_FILE ] ; then
#
# Edit extensions file
#
grep -q $EXTENSION $CONF_DIR/$CONF_FILE
if [ "$?" = "1" ] ; then
sed -i -e "s/\(enabled-extensions=\[.*\)\]/\1, '${EXTENSION}'\]/" $CONF_DIR/$CONF_FILE
fi
if [ -f ${CONF_DIR}/${CONF_FILE} ] ; then
#
# Edit extensions file
#
grep -q ${EXTENSION} ${CONF_DIR}/${CONF_FILE}
if [ "$?" == "1" ] ; then
sed -i -e "s/\(enabled-extensions=\[.*\)\]/\1, '${EXTENSION}'\]/" ${CONF_DIR}/${CONF_FILE}
fi
else
#
# Generate extensions file
#
mkdir -p $CONF_DIR
echo "[org/gnome/shell]" > $CONF_DIR/$CONF_FILE
echo "# List all extensions that you want to have enabled for all users" >> $CONF_DIR/$CONF_FILE
echo "enabled-extensions=['${EXTENSION}']" >> $CONF_DIR/$CONF_FILE
#
# Generate extensions file
#
mkdir -p ${CONF_DIR}
cat >${CONF_DIR}/${CONF_FILE} <<EOF
[org/gnome/shell]
# List all extensions that you want to have enabled for all users
enabled-extensions=['appindicatorsupport@rgcjonas.gmail.com']
EOF
fi
which dconf > /dev/null 2>&1
if [ "$?" = "0" ] ; then
dconf update
#
if [ -x /usr/bin/dconf ] ; then
dconf update
fi
}

View File

@@ -11,14 +11,14 @@ license=(MPL-2.0)
depends=(
'qt5-base'
'thunderbird>=68'
'hunderbird<=84'
'thunderbird<=84'
)
makedepends=(
'git'
'unzip'
'zip'
'libx11'
't5-base'
'qt5-base'
)
provides=(
'systray-x'