[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

@ -15,47 +15,94 @@
</object>
</property>
<child>
<object class="CustomizeRow" id="customize">
<property name="sensitive" bind-source="blur" bind-property="state"
bind-flags="sync-create" />
</object>
</child>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Static blur</property>
<property name="subtitle" translatable="yes">Uses a static blurred image, can be used with rounding effect.
&lt;b&gt;Important notice:&lt;/b&gt; with this activated, you should not use a big sigma value as it will deteriorate performances.</property>
<property name="activatable-widget">static_blur</property>
<property name="title" translatable="yes">Blur type</property>
<property name="subtitle" translatable="yes">The dynamic blur is slower and only compatible with a gaussian blur effect.</property>
<property name="activatable-widget">blur_mode_choose</property>
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
<child>
<object class="GtkSwitch" id="static_blur">
<object class="GtkBox" id="blur_mode_choose">
<property name="valign">center</property>
<property name="hexpand">false</property>
<style>
<class name="linked" />
</style>
<child>
<object class="GtkToggleButton" id="mode_static">
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="group">mode_dynamic</property>
<property name="child">
<object class="AdwButtonContent">
<property name="icon-name">static-mode-symbolic</property>
<property name="label" translatable="yes">Static</property>
</object>
</property>
</object>
</child>
<child>
<object class="GtkToggleButton" id="mode_dynamic">
<property name="valign">center</property>
<property name="hexpand">true</property>
<property name="child">
<object class="AdwButtonContent">
<property name="icon-name">dynamic-mode-symbolic</property>
<property name="label" translatable="yes">Dynamic</property>
</object>
</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Rounded corner radius</property>
<property name="subtitle" translatable="yes">The radius for the rounding effect. Only available with static blur.</property>
<property name="activatable-widget">corner_radius_scale</property>
<object class="PipelineChooseRow" id="pipeline_choose_row">
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
</object>
</child>
<child>
<object class="AdwActionRow" id="sigma_row">
<property name="title" translatable="yes">Sigma</property>
<property name="subtitle" translatable="yes">The intensity of the blur.</property>
<property name="activatable-widget">sigma_scale</property>
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
<property name="sensitive" bind-source="static_blur" bind-property="state" bind-flags="sync-create" />
<child>
<object class="GtkScale" id="corner_radius_scale">
<object class="GtkScale" id="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="orientation">horizontal</property>
<property name="digits">0</property>
<property name="adjustment">corner_radius</property>
<property name="adjustment">sigma</property>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow" id="brightness_row">
<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">brightness_scale</property>
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
<child>
<object class="GtkScale" id="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">brightness</property>
</object>
</child>
</object>
@ -103,6 +150,18 @@
</child>
</template>
<object class="GtkAdjustment" id="sigma">
<property name="lower">0</property>
<property name="upper">100</property>
<property name="step-increment">1</property>
</object>
<object class="GtkAdjustment" id="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="style_dash_to_dock_model">
<items>
<item translatable="yes">Transparent</item>
@ -110,10 +169,4 @@
<item translatable="yes">Dark</item>
</items>
</object>
<object class="GtkAdjustment" id="corner_radius">
<property name="lower">0</property>
<property name="upper">50</property>
<property name="step-increment">1</property>
</object>
</interface>