mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-08-05 17:19:09 +02:00
Update installer for GNOME
This commit is contained in:
13
dist/install.Fedora_31.sh
vendored
13
dist/install.Fedora_31.sh
vendored
@@ -1,16 +1,21 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
26
dist/install.SLE_15.sh
vendored
26
dist/install.SLE_15.sh
vendored
@@ -1,16 +1,34 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
|
||||
if [ ! -x /usr/bin/gnome-shell-extension-tool ] ; then
|
||||
echo
|
||||
echo "Please install the package gnome-shell-devel:"
|
||||
echo
|
||||
echo "sudo zypper install gnome-shell-devel"
|
||||
echo
|
||||
echo "And run after the insstaller is finished:"
|
||||
echo
|
||||
echo $ENABLE_CMD
|
||||
echo
|
||||
fi
|
||||
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
26
dist/install.SLE_15_SP1.sh
vendored
26
dist/install.SLE_15_SP1.sh
vendored
@@ -1,16 +1,34 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
|
||||
if [ ! -x /usr/bin/gnome-shell-extension-tool ] ; then
|
||||
echo
|
||||
echo "Please install the package gnome-shell-devel:"
|
||||
echo
|
||||
echo "sudo zypper install gnome-shell-devel"
|
||||
echo
|
||||
echo "And run after the insstaller is finished:"
|
||||
echo
|
||||
echo $ENABLE_CMD
|
||||
echo
|
||||
fi
|
||||
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
26
dist/install.openSUSE_Leap_15.1.sh
vendored
26
dist/install.openSUSE_Leap_15.1.sh
vendored
@@ -1,16 +1,34 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
|
||||
if [ ! -x /usr/bin/gnome-shell-extension-tool ] ; then
|
||||
echo
|
||||
echo "Please install the package gnome-shell-devel:"
|
||||
echo
|
||||
echo "sudo zypper install gnome-shell-devel"
|
||||
echo
|
||||
echo "And run after the insstaller is finished:"
|
||||
echo
|
||||
echo $ENABLE_CMD
|
||||
echo
|
||||
fi
|
||||
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
26
dist/install.openSUSE_Leap_15.2.sh
vendored
26
dist/install.openSUSE_Leap_15.2.sh
vendored
@@ -1,16 +1,34 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
|
||||
if [ ! -x /usr/bin/gnome-shell-extension-tool ] ; then
|
||||
echo
|
||||
echo "Please install the package gnome-shell-devel:"
|
||||
echo
|
||||
echo "sudo zypper install gnome-shell-devel"
|
||||
echo
|
||||
echo "And run after the insstaller is finished:"
|
||||
echo
|
||||
echo $ENABLE_CMD
|
||||
echo
|
||||
fi
|
||||
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
26
dist/install.openSUSE_Tumbleweed.sh
vendored
26
dist/install.openSUSE_Tumbleweed.sh
vendored
@@ -1,16 +1,34 @@
|
||||
enableGnomeExtension() {
|
||||
EXTENSION="appindicatorsupport@rgcjonas.gmail.com"
|
||||
PACKAGE="gnome-shell-extension-appindicator"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e appindicatorsupport@rgcjonas.gmail.com"
|
||||
ENABLE_CMD="gnome-shell-extension-tool -e ${EXTENSION}"
|
||||
|
||||
if [ ! -x /usr/bin/gnome-shell-extension-tool ] ; then
|
||||
echo
|
||||
echo "Please install the package gnome-shell-devel:"
|
||||
echo
|
||||
echo "sudo zypper install gnome-shell-devel"
|
||||
echo
|
||||
echo "And run after the insstaller is finished:"
|
||||
echo
|
||||
echo $ENABLE_CMD
|
||||
echo
|
||||
fi
|
||||
|
||||
#
|
||||
# Is the extension installed?
|
||||
#
|
||||
if [ -d /usr/share/gnome-shell/extensions/$EXTENSION ] || [ -d ~/.local/share/gnome-shell/extensions/$EXTENSION ] ; then
|
||||
if [ -d /usr/share/gnome-shell/extensions/${EXTENSION} ] || [ -d ~/.local/share/gnome-shell/extensions/${EXTENSION} ] ; then
|
||||
$ENABLE_CMD
|
||||
else
|
||||
echo "Please install: "$PACKAGE
|
||||
echo "And run: "$ENABLE_CMD
|
||||
mkdir -p ~/.local/share/gnome-shell/extensions
|
||||
tar -C ~/.local/share/gnome-shell/extensions -xJf ${DESTINATION}/gnome-shell-extension.tar.xz
|
||||
$ENABLE_CMD
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Please logout and login to activate the gnome shell extension"
|
||||
echo
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user