mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-05-07 12:57:34 +02:00
71 lines
1.5 KiB
Bash
71 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
# Source debconf library.
|
|
. /usr/share/debconf/confmodule
|
|
|
|
# Fetching configuration from debconf
|
|
#db_get packagename/question1
|
|
#ANSWER1=$RET
|
|
|
|
#DEB_VENDOR=$(cat /etc/dpkg/origins/default | grep Vendor: | sed -e "s/Vendor: //")
|
|
#if [ "$DEB_VENDOR" = "Debian" ] ; then
|
|
#fi
|
|
|
|
PROF_DIR=/etc/dconf/profile
|
|
PROF_FILE=user
|
|
|
|
if [ -f $PROF_DIR/$PROF_FILE ] ; then
|
|
#
|
|
# Edit user file
|
|
#
|
|
grep -q "user-db:user" $PROF_DIR/$PROF_FILE
|
|
if [ "$?" = "1" ] ; then
|
|
echo "user-db:user" >> $PROF_DIR/$PROF_FILE
|
|
fi
|
|
|
|
grep -q "system-db:local" $PROF_DIR/$PROF_FILE
|
|
if [ "$?" = "1" ] ; then
|
|
echo "system-db:local" >> $PROF_DIR/$PROF_FILE
|
|
fi
|
|
else
|
|
#
|
|
# Generate user file
|
|
#
|
|
mkdir -p $PROF_DIR
|
|
cat >$PROF_DIR/$PROF_FILE <<EOF
|
|
user-db:user
|
|
system-db:local
|
|
EOF
|
|
|
|
fi
|
|
|
|
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
|
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
|
|
else
|
|
#
|
|
# 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
|
|
fi
|