We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60fdbfd commit f1db4d4Copy full SHA for f1db4d4
zulipterminal/cli/run.py
@@ -20,6 +20,7 @@
20
)
21
from zulipterminal.core import Controller
22
from zulipterminal.model import ServerConnectionFailure
23
+from zulipterminal.platform_code import PLATFORM
24
from zulipterminal.version import ZT_VERSION
25
26
@@ -439,6 +440,10 @@ def main(options: Optional[List[str]] = None) -> None:
439
440
if args.notify:
441
zterm["notify"] = (args.notify, "on command line")
442
443
+ if PLATFORM:
444
+ print("Detected Platform: " + PLATFORM)
445
+ else:
446
+ print("Running on undetected platform.")
447
print("Loading with:")
448
print(" theme '{}' specified {}.".format(*theme_to_use))
449
complete, incomplete = complete_and_incomplete_themes()
0 commit comments