Files

73 lines
3.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025-2026 oxmc / PawletOS
SPDX-License-Identifier: Apache-2.0
PawletOS configuration overlay for com.android.wallpaper (ThemePicker +
WallpaperPicker2 combined binary). Enables Monet Material You sections,
icon shape picker, font picker, and dark mode toggle.
Resource names are sourced from:
packages/apps/ThemePicker/res/values/flags.xml
packages/apps/WallpaperPicker2/res/values/flags.xml
Verify names against your exact AOSP android-16.0 checkout if a build
error occurs — aconfig flag names are stable but XML fallback names may
differ by exact release tag.
-->
<resources>
<!-- ================================================================== -->
<!-- Monet / Material You color scheme section -->
<!-- ================================================================== -->
<!-- Enable the Monet dynamic color scheme picker section in ThemePicker -->
<bool name="flag_monet">true</bool>
<!-- Default color scheme algorithm. Values (from SystemUI Style enum):
TONAL_SPOT (0) — default Material You
VIBRANT (1) — high-saturation variant
EXPRESSIVE (2) — expressive variant
SPRITZ (3) — muted/desaturated
RAINBOW (4) — rainbow multi-hue
FRUIT_SALAD (5) — dual-hue accent
-->
<integer name="config_default_color_scheme_style">0</integer><!-- TONAL_SPOT -->
<!-- Show the "Color and style" section (color scheme + accent options) -->
<bool name="flag_monochromatic_theme">true</bool>
<!-- ================================================================== -->
<!-- Wallpaper picker -->
<!-- ================================================================== -->
<!-- Enable WallpaperPicker2 v2 UI (full-screen preview + crop) -->
<bool name="flag_wallpaper_picker_v2_enabled">true</bool>
<!-- ================================================================== -->
<!-- Icon shape picker -->
<!-- ================================================================== -->
<!-- Show the "App grid" / icon shape customization section -->
<bool name="flag_custom_themed_icon">true</bool>
<!-- ================================================================== -->
<!-- Font style picker -->
<!-- ================================================================== -->
<!-- Show the font style section (requires font packs in the build) -->
<bool name="flag_font_picker">true</bool>
<!-- ================================================================== -->
<!-- Dark mode toggle -->
<!-- ================================================================== -->
<!-- Surface a Dark mode toggle (Light / Dark / Auto) inside ThemePicker -->
<bool name="flag_dark_mode_toggle">true</bool>
<!-- ================================================================== -->
<!-- Clock face picker (disable — RPi has no Always-on display) -->
<!-- ================================================================== -->
<bool name="flag_custom_clocks_enabled">false</bool>
</resources>