diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml
index 8ed89acdc..c0f0850e7 100644
--- a/.github/workflows/appimage.yml
+++ b/.github/workflows/appimage.yml
@@ -102,12 +102,14 @@ jobs:
cp dist/linux/common/org.cryptomator.Cryptomator256.png Cryptomator.AppDir/usr/share/icons/hicolor/256x256/apps/org.cryptomator.Cryptomator.png
cp dist/linux/common/org.cryptomator.Cryptomator512.png Cryptomator.AppDir/usr/share/icons/hicolor/512x512/apps/org.cryptomator.Cryptomator.png
cp dist/linux/common/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg
- cp dist/linux/common/org.cryptomator.Cryptomator-unlocked.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-unlocked.svg
+ cp dist/linux/common/org.cryptomator.Cryptomator-monochrome.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-monochrome.svg
+ cp dist/linux/common/org.cryptomator.Cryptomator-monochrome-unlocked.svg Cryptomator.AppDir/usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-monochrome-unlocked.svg
cp dist/linux/common/org.cryptomator.Cryptomator.metainfo.xml Cryptomator.AppDir/usr/share/metainfo/org.cryptomator.Cryptomator.metainfo.xml
cp dist/linux/common/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/usr/share/applications/org.cryptomator.Cryptomator.desktop
cp dist/linux/common/application-vnd.cryptomator.vault.xml Cryptomator.AppDir/usr/share/mime/packages/application-vnd.cryptomator.vault.xml
ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/org.cryptomator.Cryptomator.svg
- ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-unlocked.svg Cryptomator.AppDir/org.cryptomator.Cryptomator-unlocked.svg
+ ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-monochrome.svg Cryptomator.AppDir/org.cryptomator.Cryptomator-monochrome.svg
+ ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator-monochrome-unlocked.svg Cryptomator.AppDir/org.cryptomator.Cryptomator-monochrome-unlocked.svg
ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/Cryptomator.svg
ln -s usr/share/icons/hicolor/scalable/apps/org.cryptomator.Cryptomator.svg Cryptomator.AppDir/.DirIcon
ln -s usr/share/applications/org.cryptomator.Cryptomator.desktop Cryptomator.AppDir/Cryptomator.desktop
diff --git a/dist/linux/common/org.cryptomator.Cryptomator-unlocked.svg b/dist/linux/common/org.cryptomator.Cryptomator-monochrome-unlocked.svg
similarity index 100%
rename from dist/linux/common/org.cryptomator.Cryptomator-unlocked.svg
rename to dist/linux/common/org.cryptomator.Cryptomator-monochrome-unlocked.svg
diff --git a/dist/linux/common/org.cryptomator.Cryptomator-monochrome.svg b/dist/linux/common/org.cryptomator.Cryptomator-monochrome.svg
new file mode 100644
index 000000000..59bd8a090
--- /dev/null
+++ b/dist/linux/common/org.cryptomator.Cryptomator-monochrome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/linux/debian/cryptomator.install b/dist/linux/debian/cryptomator.install
index f119dd552..93337145e 100644
--- a/dist/linux/debian/cryptomator.install
+++ b/dist/linux/debian/cryptomator.install
@@ -1,7 +1,8 @@
cryptomator usr/lib
common/org.cryptomator.Cryptomator.desktop usr/share/applications
common/org.cryptomator.Cryptomator.svg usr/share/icons/hicolor/scalable/apps
-common/org.cryptomator.Cryptomator-unlocked.svg usr/share/icons/hicolor/scalable/apps
+common/org.cryptomator.Cryptomator-monochrome.svg usr/share/icons/hicolor/scalable/apps
+common/org.cryptomator.Cryptomator-monochrome-unlocked.svg usr/share/icons/hicolor/scalable/apps
common/org.cryptomator.Cryptomator256.png usr/share/icons/hicolor/256x256/apps
common/org.cryptomator.Cryptomator512.png usr/share/icons/hicolor/512x512/apps
common/org.cryptomator.Cryptomator.metainfo.xml usr/share/metainfo
diff --git a/pom.xml b/pom.xml
index cfda771f3..ee77ac534 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@
2.6.2
- 2.0.0-alpha2
+ 1.3.0-beta1
1.2.0
1.2.0
2.0.0-alpha1
diff --git a/src/main/java/org/cryptomator/ui/traymenu/TrayMenuBuilder.java b/src/main/java/org/cryptomator/ui/traymenu/TrayMenuBuilder.java
index 4431c1e07..490144b43 100644
--- a/src/main/java/org/cryptomator/ui/traymenu/TrayMenuBuilder.java
+++ b/src/main/java/org/cryptomator/ui/traymenu/TrayMenuBuilder.java
@@ -187,6 +187,6 @@ public class TrayMenuBuilder {
private String getAppropriateTrayIconSVG() {
boolean isAnyVaultUnlocked = vaults.stream().anyMatch(Vault::isUnlocked);
- return isAnyVaultUnlocked ? "org.cryptomator.Cryptomator-unlocked" : "org.cryptomator.Cryptomator";
+ return isAnyVaultUnlocked ? "org.cryptomator.Cryptomator-monochrome-unlocked" : "org.cryptomator.Cryptomator-monochrome";
}
}