From 2238501be552a1a7f426f6be08dcaaa875339c61 Mon Sep 17 00:00:00 2001 From: loveless90 Date: Mon, 13 Apr 2020 22:49:18 +0200 Subject: [PATCH 1/3] Update README.md Remove dependency qtbase5-dev, because qt5-default installs it as dependency. Complete cp-command needed for copying Systray_X.json. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 875ed12..288f1cf 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Requirements: ```dnf install qt5-qtbase-devel``` - Debian/Ubuntu: - ```apt install zip git g++ make qt5-default qtbase5-dev``` + ```apt install zip git g++ make qt5-default``` Build: ```bash @@ -104,7 +104,7 @@ make Install: ```bash mkdir -p ~/.mozilla/native-messaging-hosts -cp -f app/config/linux/SysTray_X.json +cp -f app/config/linux/SysTray_X.json ~/.mozilla/native-messaging-hosts/ cp -f systray-x@Ximi1970.xpi ~/.thunderbird/*.default-release/extensions/ ``` ... From c7749a7ad1e458925ba7f148c7a51bfdc3b3941c Mon Sep 17 00:00:00 2001 From: Maxime Rijnders Date: Wed, 15 Apr 2020 00:00:45 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 288f1cf..f5d9b45 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,18 @@ sudo apt update sudo apt install systray-x ``` +### Debian + +#### 10 + +```bash +wget -q https://download.opensuse.org/repositories/home:/Ximi1970:/Mozilla:/Add-ons/Debian_10/Release.key +sudo apt-key add Release.key +sudo bash -c 'echo "deb https://download.opensuse.org/repositories/home:/Ximi1970:/Mozilla:/Add-ons/Debian_10 ./" > /etc/apt/sources.list.d/systray-x.list' +sudo apt update +sudo apt install systray-x +``` + ## Binaries (User) User installable package. From 80a4038f5822456fd87b0297ca0e07775790b5ca Mon Sep 17 00:00:00 2001 From: Maxime Rijnders Date: Wed, 15 Apr 2020 00:17:47 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f5d9b45..65ba161 100644 --- a/README.md +++ b/README.md @@ -102,10 +102,22 @@ git clone https://github.com/Ximi1970/systray-x.git Requirements: - Fedora/Centos/RHEL: - ```dnf install qt5-qtbase-devel``` - - Debian/Ubuntu: + ```bash + dnf install qt5-qtbase-devel + ``` + + - Ubuntu: - ```apt install zip git g++ make qt5-default``` + ```bash + sudo apt install zip git g++ make qt5-default + ``` + + - Debian: + + ```bash + sudo apt install zip git g++ make qt5-default gnome-shell-extension-appindicator + gnome-shell-extension-tool -e ubuntu-appindicator@ubuntu.com + ``` Build: ```bash