19 lines
465 B
PHP
19 lines
465 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'id' => 'apple',
|
|
'label' => 'Apple',
|
|
'family' => 'apple',
|
|
'wallpaper' => 'radial-gradient(circle at top, #ffe7ba 0%, #ff9a62 38%, #531b53 100%)',
|
|
'top_bar' => true,
|
|
'taskbar_mode' => 'dock',
|
|
'taskbar_label' => 'Launchpad',
|
|
'taskbar_icon' => 'Mac',
|
|
'taskbar_icon_style' => 'apple',
|
|
'window_controls' => 'mac',
|
|
'maximize_over_system_bar' => true,
|
|
'icon_variant' => 'light',
|
|
];
|