[gnome] Update extensions

This commit is contained in:
2024-10-31 10:19:02 -04:00
parent 851ec4a772
commit 6d1e6d1132
238 changed files with 8705 additions and 4185 deletions

View File

@ -16,7 +16,7 @@
</property>
<child>
<object class="CustomizeRow" id="lockscreen_customize">
<object class="PipelineChooseRow" id="lockscreen_pipeline_choose_row">
<property name="sensitive" bind-source="lockscreen_blur" bind-property="state" bind-flags="sync-create" />
</object>
</child>
@ -34,7 +34,7 @@
</property>
<child>
<object class="CustomizeRow" id="screenshot_customize">
<object class="PipelineChooseRow" id="screenshot_pipeline_choose_row">
<property name="sensitive" bind-source="screenshot_blur" bind-property="state" bind-flags="sync-create" />
</object>
</child>
@ -52,11 +52,157 @@
</property>
<child>
<object class="CustomizeRow" id="window_list_customize">
<object class="AdwActionRow">
<property name="title" translatable="yes">Sigma</property>
<property name="subtitle" translatable="yes">The intensity of the blur.</property>
<property name="activatable-widget">window_list_sigma_scale</property>
<property name="sensitive" bind-source="window_list_blur" bind-property="state" bind-flags="sync-create" />
<child>
<object class="GtkScale" id="window_list_sigma_scale">
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="width-request">200px</property>
<property name="draw-value">true</property>
<property name="value-pos">right</property>
<property name="digits">0</property>
<property name="adjustment">window_list_sigma</property>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Brightness</property>
<property name="subtitle" translatable="yes">The brightness of the blur effect, a high value might make the text harder to read.</property>
<property name="activatable-widget">window_list_brightness_scale</property>
<property name="sensitive" bind-source="window_list_blur" bind-property="state" bind-flags="sync-create" />
<child>
<object class="GtkScale" id="window_list_brightness_scale">
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="width-request">200px</property>
<property name="draw-value">true</property>
<property name="value-pos">right</property>
<property name="digits">2</property>
<property name="adjustment">window_list_brightness</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup">
<property name="title" translatable="yes">Coverflow Alt-Tab extension blur</property>
<property name="description" translatable="yes">Make the coverflow alt-tab extension blurred, if it is used.</property>
<property name="header-suffix">
<object class="GtkSwitch" id="coverflow_alt_tab_blur">
<property name="valign">center</property>
</object>
</property>
<child>
<object class="PipelineChooseRow" id="coverflow_alt_tab_pipeline_choose_row">
<property name="sensitive" bind-source="coverflow_alt_tab_blur" bind-property="state" bind-flags="sync-create" />
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup">
<property name="title" translatable="yes">Performance</property>
<property name="description" translatable="yes">Various options to tweak the performance.</property>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Hack level</property>
<property name="subtitle" translatable="yes">Changes the behaviour of the dynamic blur effect. The default value is highly recommended.
The “No artifact” option will entirely disable clipped redraws in GNOME shell, and will impact your computer performances significantly.</property>
<property name="activatable-widget">hack_level</property>
<child>
<object class="GtkDropDown" id="hack_level">
<property name="valign">center</property>
<property name="model">hack_level_model</property>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Debug</property>
<property name="subtitle" translatable="yes">Makes the extension verbose in logs, activate when you need to report an issue.</property>
<property name="activatable-widget">debug</property>
<child>
<object class="GtkSwitch" id="debug">
<property name="valign">center</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup">
<property name="title" translatable="yes">Reset preferences</property>
<property name="description" translatable="yes">Resets preferences of Blur my Shell irreversibly.</property>
<property name="header-suffix">
<object class="GtkButton" id="reset">
<property name="halign">start</property>
<property name="valign">center</property>
<child>
<object class="GtkBox">
<property name="margin-start">20</property>
<property name="margin-end">20</property>
<property name="margin-top">6</property>
<property name="margin-bottom">6</property>
<child>
<object class="GtkImage">
<property name="margin-end">6</property>
<property name="icon-name">reset-symbolic</property>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="label" translatable="yes">Reset</property>
</object>
</child>
</object>
</child>
<style>
<class name="circular" />
<class name="destructive-action" />
</style>
</object>
</property>
</object>
</child>
</template>
<object class="GtkAdjustment" id="window_list_sigma">
<property name="lower">0</property>
<property name="upper">100</property>
<property name="step-increment">1</property>
</object>
<object class="GtkAdjustment" id="window_list_brightness">
<property name="lower">0.0</property>
<property name="upper">1.0</property>
<property name="step-increment">0.01</property>
</object>
<object class="GtkStringList" id="hack_level_model">
<items>
<item translatable="yes">High performances</item>
<item translatable="yes">Default</item>
<item translatable="yes">No artifact</item>
</items>
</object>
</interface>