adding more spec files
testing out in a little bit.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -37,7 +37,7 @@ MANIFEST
|
|||||||
# Usually these files are written by a python script from a template
|
# Usually these files are written by a python script from a template
|
||||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
*.manifest
|
*.manifest
|
||||||
*.spec
|
#*.spec
|
||||||
|
|
||||||
# Installer logs
|
# Installer logs
|
||||||
pip-log.txt
|
pip-log.txt
|
||||||
|
|||||||
4
SpyderScripts/.gitignore
vendored
4
SpyderScripts/.gitignore
vendored
@@ -4,7 +4,7 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
._*
|
#._*
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
@@ -62,7 +62,7 @@ MANIFEST
|
|||||||
|
|
||||||
# PyInstaller
|
# PyInstaller
|
||||||
*.manifest
|
*.manifest
|
||||||
*.spec
|
#*.spec
|
||||||
|
|
||||||
# py2app
|
# py2app
|
||||||
build/
|
build/
|
||||||
|
|||||||
65
SpyderScripts/minimize_all.spec
Normal file
65
SpyderScripts/minimize_all.spec
Normal 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.',
|
||||||
|
},
|
||||||
|
)
|
||||||
65
SpyderScripts/window_maximum.spec
Normal file
65
SpyderScripts/window_maximum.spec
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['window_naximum.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='MaximizeCurrentWindow',
|
||||||
|
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='Maximize Current Window.app',
|
||||||
|
icon=None,
|
||||||
|
bundle_identifier='com.user.maximizeWindow',
|
||||||
|
info_plist={
|
||||||
|
'CFBundleName': 'Maximize Current Window',
|
||||||
|
'CFBundleDisplayName': 'Maximize Current Window',
|
||||||
|
'CFBundleVersion': '1.0.0',
|
||||||
|
'CFBundleShortVersionString': '1.0.0',
|
||||||
|
'LSUIElement': True, # Background app - no dock icon
|
||||||
|
'NSAppleEventsUsageDescription': 'This app needs to control other applications to maximize their window.',
|
||||||
|
'NSAccessibilityUsageDescription': 'This app needs accessibility access to maximize windows.',
|
||||||
|
},
|
||||||
|
)
|
||||||
65
SpyderScripts/window_medium.spec
Normal file
65
SpyderScripts/window_medium.spec
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['window_medium.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='MediumCurrentWindow',
|
||||||
|
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='Medium Current Window.app',
|
||||||
|
icon=None,
|
||||||
|
bundle_identifier='com.user.mediumWindow',
|
||||||
|
info_plist={
|
||||||
|
'CFBundleName': 'Medium Current Window',
|
||||||
|
'CFBundleDisplayName': 'Medium Current Window',
|
||||||
|
'CFBundleVersion': '1.0.0',
|
||||||
|
'CFBundleShortVersionString': '1.0.0',
|
||||||
|
'LSUIElement': True, # Background app - no dock icon
|
||||||
|
'NSAppleEventsUsageDescription': 'This app needs to control other applications to medium their window.',
|
||||||
|
'NSAccessibilityUsageDescription': 'This app needs accessibility access to medium windows.',
|
||||||
|
},
|
||||||
|
)
|
||||||
65
SpyderScripts/window_minimal.spec
Normal file
65
SpyderScripts/window_minimal.spec
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['window_minimal.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='MinimalCurrentWindow',
|
||||||
|
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='Minimal Current Window.app',
|
||||||
|
icon=None,
|
||||||
|
bundle_identifier='com.user.minimalWindow',
|
||||||
|
info_plist={
|
||||||
|
'CFBundleName': 'Minimal Current Window',
|
||||||
|
'CFBundleDisplayName': 'Minimal Current Window',
|
||||||
|
'CFBundleVersion': '1.0.0',
|
||||||
|
'CFBundleShortVersionString': '1.0.0',
|
||||||
|
'LSUIElement': True, # Background app - no dock icon
|
||||||
|
'NSAppleEventsUsageDescription': 'This app needs to control other applications to minimal their window.',
|
||||||
|
'NSAccessibilityUsageDescription': 'This app needs accessibility access to minimal windows.',
|
||||||
|
},
|
||||||
|
)
|
||||||
65
SpyderScripts/window_minimalist.spec
Normal file
65
SpyderScripts/window_minimalist.spec
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['window_minimalist.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='MinimalistCurrentWindow',
|
||||||
|
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='Minimalist Current Window.app',
|
||||||
|
icon=None,
|
||||||
|
bundle_identifier='com.user.minimalistWindow',
|
||||||
|
info_plist={
|
||||||
|
'CFBundleName': 'Minimalist Current Window',
|
||||||
|
'CFBundleDisplayName': 'Minimalist Current Window',
|
||||||
|
'CFBundleVersion': '1.0.0',
|
||||||
|
'CFBundleShortVersionString': '1.0.0',
|
||||||
|
'LSUIElement': True, # Background app - no dock icon
|
||||||
|
'NSAppleEventsUsageDescription': 'This app needs to control other applications to minimalist their window.',
|
||||||
|
'NSAccessibilityUsageDescription': 'This app needs accessibility access to minimalist windows.',
|
||||||
|
},
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user