* Commits below include features from A15 that were preserved but had their implementations changed/replaced. Update strings Add Fluid power menu style Add Volume sound feedback Re-arrange developer category options Enable PIF spoof by default Drop Play store spoof Restore QS layout settings Add option to disable quicksettings on keyguard Add lockscreen media art Add pulse visualizer Add fading block renderer for Pulse Use master switch for pulse enable Update for edge light feature updates - Add 4-side rounded style option for edge light - Add rainbow gradient color mode - Add 3 new pulse style - Fix default values for edge light customization - Make ambient pulse configurable - Fix default value for edge light style Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Co-authored-by: rmp22 <195054967+rmp22@users.noreply.github.com> Co-authored-by: Ghosuto <clash.raja10@gmail.com>
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2016-2024 crDroid Android Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:key="power_menu_actions"
|
|
android:title="@string/power_menu_actions_title">
|
|
|
|
<lineageos.preference.LineageSecureSettingSwitchPreference
|
|
android:key="advanced_reboot"
|
|
android:title="@string/power_menu_actions_advanced_reboot_title"
|
|
android:defaultValue="true" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="screenshot"
|
|
android:title="@string/power_menu_actions_screenshot_title"
|
|
android:defaultValue="false" />
|
|
|
|
<!--<SwitchPreferenceCompat
|
|
android:key="onthego"
|
|
android:title="@string/power_menu_actions_onthego_title"
|
|
android:defaultValue="false" />-->
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="airplane"
|
|
android:title="@string/power_menu_actions_airplane_title"
|
|
android:defaultValue="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="users"
|
|
android:title="@string/power_menu_actions_users_title"
|
|
android:defaultValue="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="lockdown"
|
|
android:title="@string/power_menu_actions_lockdown_title"
|
|
android:defaultValue="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="emergency"
|
|
android:title="@string/power_menu_actions_emergency_title"
|
|
android:defaultValue="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:key="devicecontrols"
|
|
android:title="@string/power_menu_actions_devicecontrols_title"
|
|
android:defaultValue="false"
|
|
android:enabled="false" />
|
|
</PreferenceScreen>
|