[gnome] Update extensions
This commit is contained in:
@ -7,10 +7,9 @@
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup">
|
||||
<property name="title" translatable="yes">Applications blur (beta)</property>
|
||||
<property name="description" translatable="yes">Adds blur to the applications. This is still beta functionality.
|
||||
To get the best results possible, make sure to choose the option “No artifact” in the “General → Hack level” preference.
|
||||
</property>
|
||||
<property name="title" translatable="yes">Applications blur</property>
|
||||
<property name="description" translatable="yes">Adds blur to the applications.
|
||||
To get the best results possible, although with reduced performances, you can choose the option “No artifact” in the “Other → Hack level” tab.</property>
|
||||
<property name="header-suffix">
|
||||
<object class="GtkSwitch" id="blur">
|
||||
<property name="valign">center</property>
|
||||
@ -18,8 +17,44 @@ To get the best results possible, make sure to choose the option “No artifact
|
||||
</property>
|
||||
|
||||
<child>
|
||||
<object class="CustomizeRow" id="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">sigma_scale</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
<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="digits">0</property>
|
||||
<property name="adjustment">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">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>
|
||||
</child>
|
||||
|
||||
@ -45,6 +80,20 @@ To get the best results possible, make sure to choose the option “No artifact
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Opaque focused window</property>
|
||||
<property name="subtitle" translatable="yes">Makes the focused window opaque and the other ones blurred, helping with legibility.</property>
|
||||
<property name="activatable-widget">dynamic_opacity</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
<child>
|
||||
<object class="GtkSwitch" id="dynamic_opacity">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
@ -65,8 +114,7 @@ This may cause some latency or performance issues.</property>
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Enable all by default</property>
|
||||
<property name="subtitle" translatable="yes">Adds blur behind all windows by default.
|
||||
Not recommended because of performance and stability issues.</property>
|
||||
<property name="subtitle" translatable="yes">Adds blur behind all windows by default.</property>
|
||||
<property name="activatable-widget">enable_all</property>
|
||||
<property name="sensitive" bind-source="blur" bind-property="state" bind-flags="sync-create" />
|
||||
|
||||
@ -96,7 +144,7 @@ Not recommended because of performance and stability issues.</property>
|
||||
<child>
|
||||
<object class="GtkImage">
|
||||
<property name="margin-end">6</property>
|
||||
<property name="icon-name">add-window-symbolic</property>
|
||||
<property name="icon-name">add-row-symbolic</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
@ -133,7 +181,7 @@ Not recommended because of performance and stability issues.</property>
|
||||
<child>
|
||||
<object class="GtkImage">
|
||||
<property name="margin-end">6</property>
|
||||
<property name="icon-name">list-add-symbolic</property>
|
||||
<property name="icon-name">add-row-symbolic</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
@ -155,6 +203,18 @@ Not recommended because of performance and stability issues.</property>
|
||||
</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="GtkAdjustment" id="opacity">
|
||||
<property name="lower">25</property>
|
||||
<property name="upper">255</property>
|
||||
|
||||
Reference in New Issue
Block a user