mirror of
https://github.com/imarkoff/Marble-shell-theme.git
synced 2025-12-03 02:36:45 -08:00
Make installation undependable from tweaks
Updated copyright years ("better late than never" ahh change)
This commit is contained in:
15
tweaks/overview/tweak.py
Executable file
15
tweaks/overview/tweak.py
Executable file
@@ -0,0 +1,15 @@
|
||||
from scripts import config
|
||||
overview_folder = f"{config.tweaks_folder}/overview"
|
||||
|
||||
|
||||
def define_arguments(parser):
|
||||
overview_args = parser.add_argument_group('Overview tweaks')
|
||||
overview_args.add_argument('--launchpad', action='store_true', help='change Show Apps icon to macOS Launchpad icon')
|
||||
|
||||
|
||||
def apply_tweak(args, theme, colors):
|
||||
if args.launchpad:
|
||||
with open(f"{overview_folder}/launchpad/launchpad.css", "r") as f:
|
||||
theme += f.read()
|
||||
|
||||
theme *= f"{overview_folder}/launchpad/launchpad.png"
|
||||
Reference in New Issue
Block a user