diff --git a/Telegram/SourceFiles/platform/linux/linux_desktop_environment.cpp b/Telegram/SourceFiles/platform/linux/linux_desktop_environment.cpp index 16879097c..8c4f24a0c 100644 --- a/Telegram/SourceFiles/platform/linux/linux_desktop_environment.cpp +++ b/Telegram/SourceFiles/platform/linux/linux_desktop_environment.cpp @@ -73,6 +73,8 @@ Type Compute() { return Type::KDE3; } else if (desktopSession.indexOf(qstr("xfce")) >= 0 || desktopSession == qstr("xubuntu")) { return Type::XFCE; + } else if (desktopSession == qstr("awesome")) { + return Type::Awesome; } } @@ -102,6 +104,7 @@ Type ComputeAndLog() { case Type::Unity: return "Unity"; case Type::XFCE: return "XFCE"; case Type::Pantheon: return "Pantheon"; + case Type::Awesome: return "Awesome"; } return QString::number(static_cast(result)); }; @@ -118,7 +121,7 @@ Type Get() { } bool TryQtTrayIcon() { - return !IsPantheon(); + return !IsPantheon() && !IsAwesome(); } bool PreferAppIndicatorTrayIcon() { diff --git a/Telegram/SourceFiles/platform/linux/linux_desktop_environment.h b/Telegram/SourceFiles/platform/linux/linux_desktop_environment.h index 43b676c8e..8af62f7c7 100644 --- a/Telegram/SourceFiles/platform/linux/linux_desktop_environment.h +++ b/Telegram/SourceFiles/platform/linux/linux_desktop_environment.h @@ -32,6 +32,7 @@ enum class Type { Unity, XFCE, Pantheon, + Awesome, }; Type Get(); @@ -68,6 +69,10 @@ inline bool IsPantheon() { return Get() == Type::Pantheon; } +inline bool IsAwesome() { + return Get() == Type::Awesome; +} + bool TryQtTrayIcon(); bool PreferAppIndicatorTrayIcon(); bool TryUnityCounter();