diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a016bd3..1b0a4910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ * Python 2 is still supported for the time being, but it is recommended to upgrade to Python 3. * UI: * New: Windows and MacOS setting to enable Tautulli to start automatically when you login. - * New: Added system tray icon for MacOS. + * New: Added menu bar icon for MacOS. * New: Ability to import a Tautulli database in the settings. * New: Added Tautulli news area on the settings page. * Other: diff --git a/Tautulli.py b/Tautulli.py index 13e572ba..f22dd60a 100755 --- a/Tautulli.py +++ b/Tautulli.py @@ -262,11 +262,11 @@ def main(): import Foundation except ImportError: logger.warn("The pyobjc module is missing. Install this " - "module to enable the system tray icon.") + "module to enable the menu bar icon.") plexpy.CONFIG.SYS_TRAY_ICON = False if plexpy.CONFIG.SYS_TRAY_ICON and macos.has_rumps: - # MacOS system tray icon must be run on the main thread and is blocking + # MacOS menu bar icon must be run on the main thread and is blocking # Start the rest of Tautulli on a new thread threading.Thread(target=wait).start() plexpy.MAC_SYS_TRAY_ICON = macos.MacOSSystemTray() diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index 32eed44f..487d684a 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -458,11 +458,14 @@
Note: Web interface changes require a restart.
% if common.PLATFORM in ('Windows', 'Darwin'): + <% + tray = {'Windows': 'System Tray', 'Darwin': 'Menu Bar'} + %>Show Tautulli shortcut in the system tray.
+Show Tautulli shortcut in the ${tray[common.PLATFORM].lower()}.