Add macOS icon

This commit is contained in:
wei
2026-08-04 19:34:53 +08:00
parent 1306b9801e
commit 5b205b93f7
2 changed files with 6 additions and 3 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
import sys
from _colorize import Theme
from pathlib import Path
from typing import Callable
@@ -243,7 +242,7 @@ class Launcher(QApplication, LauncherObject):
def get_main_window(self):
return self.main_window
def apply_theme(self, theme: Theme | None=None):
def apply_theme(self, theme=None):
if not theme:
appearance = self.settings_manager.get("appearance", AppearanceSettings)
+5 -1
View File
@@ -11,6 +11,10 @@
# nuitka-project-if: {OS} == "Windows":
# nuitka-project: --windows-console-mode=disable
# nuitka-project: --windows-icon-from-ico={MAIN_DIRECTORY}/resources/icons/icon.png
# nuitka-project-if: {OS} == "Darwin":
# nuitka-project: --macos-create-app-bundle
# nuitka-project: --macos-app-icon={MAIN_DIRECTORY}/resources/icons/apple-app-icon.icon
# nuitka-project: --macos-app-name="TapLauncher"
import os
import sys
@@ -43,7 +47,7 @@ def main():
parser = argparse.ArgumentParser()
parser.add_argument("-m", "--mode", choices=['lightweight', 'full', 'choice'], default='choice',
help="Select a mode (lightweight for TUI, full for GUI, or choice to open a mode-selection window). "
"TUI is not implemented yet.", required=False, deprecated=True)
"TUI is not implemented yet.", required=False)
parser.add_argument("-d", "--debug", action="store_true",
help="Enable debug mode", default=False)
parser.add_argument("-wd", "--work-dir", default=None, help="Work directory")