19 lines
552 B
PHP
19 lines
552 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'id' => 'apple',
|
|
'label' => 'Apple',
|
|
'family' => 'apple',
|
|
'wallpaper' => 'linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.26)), url("/assets/desktop/wallpapers/skyline.png") center center / cover no-repeat fixed',
|
|
'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',
|
|
];
|