Files
Vladyslav Hroshev 2aeb348f19 Fixes #67: Replaced png launchpad with svg
- new launchpad icon was provided by @omarellahi
2025-07-24 22:56:30 +03:00

16 lines
549 B
Python
Executable File

from scripts import config
from scripts.utils.theme.theme import Theme
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: Theme, colors):
if args.launchpad:
theme.add_from_file(f"{overview_folder}/launchpad/launchpad.css")
theme *= f"{overview_folder}/launchpad/launchpad.svg"