[gnome] Update extensions for v46
This commit is contained in:
@ -27,7 +27,7 @@ To get the best results possible, make sure to choose the option “No artifact
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Opacity</property>
|
||||
<property name="subtitle" translatable="yes">The opacity of the window on top of the blur effect, a higher value will be more legible.</property>
|
||||
<property name="activatable-widget">opacity</property>
|
||||
<property name="activatable-widget">opacity_scale</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
|
||||
@ -17,7 +17,47 @@
|
||||
|
||||
<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.
|
||||
<b>Important notice:</b> 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="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
<object class="GtkSwitch" id="static_blur">
|
||||
<property name="valign">center</property>
|
||||
</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>
|
||||
<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">
|
||||
<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>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
@ -70,4 +110,10 @@
|
||||
<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>
|
||||
@ -38,13 +38,13 @@
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Disable in overview</property>
|
||||
<property name="subtitle" translatable="yes">Disables the blur from the panel when entering the overview.</property>
|
||||
<property name="activatable-widget">unblur_in_overview</property>
|
||||
<property name="title" translatable="yes">Force light text</property>
|
||||
<property name="subtitle" translatable="yes">Use a light text for the panel, useful when using gnome-shell's light theme.</property>
|
||||
<property name="activatable-widget">force_light_text</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
<object class="GtkSwitch" id="unblur_in_overview">
|
||||
<object class="GtkSwitch" id="force_light_text">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
@ -89,6 +89,21 @@ Recommended unless you want to customize your GNOME theme.</property>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Disable in overview</property>
|
||||
<property name="subtitle" translatable="yes">Disables the blur from the panel when entering the overview.</property>
|
||||
<property name="activatable-widget">unblur_in_overview</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
<object class="GtkSwitch" id="unblur_in_overview">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
|
||||
@ -40,4 +40,8 @@
|
||||
<object class="AdwToast" id="picking_failure_toast">
|
||||
<property name="title">Could not pick window, make sure that the extension is enabled.</property>
|
||||
</object>
|
||||
|
||||
<object class="AdwToast" id="window_not_found_toast">
|
||||
<property name="title">Could not pick window from here, does not seem like a valid window.</property>
|
||||
</object>
|
||||
</interface>
|
||||
Reference in New Issue
Block a user