adding more spec files

testing out in a little bit.
This commit is contained in:
2026-01-29 13:52:04 -05:00
parent c0f43b4091
commit 9e172f2501
7 changed files with 328 additions and 3 deletions

View File

@@ -0,0 +1,65 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['minimize_all.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[
'Cocoa',
'Quartz',
'Foundation',
'AppKit',
'objc',
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='MinimizeAllWindows',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False, # No terminal window
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
app = BUNDLE(
exe,
name='Minimize All Windows.app',
icon=None,
bundle_identifier='com.user.minimizeallwindows',
info_plist={
'CFBundleName': 'Minimize All Windows',
'CFBundleDisplayName': 'Minimize All Windows',
'CFBundleVersion': '1.0.0',
'CFBundleShortVersionString': '1.0.0',
'LSUIElement': True, # Background app - no dock icon
'NSAppleEventsUsageDescription': 'This app needs to control other applications to minimize their windows.',
'NSAccessibilityUsageDescription': 'This app needs accessibility access to minimize windows.',
},
)