Changed example config ignore_exclusive_zones to false, added an example config to examples/config.ron

This commit is contained in:
Kirottu
2023-04-13 14:19:47 +03:00
parent 5b0b18e449
commit df6491b6b5
2 changed files with 17 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ Config(
position: Top, position: Top,
vertical_offset: Absolute(0), // How much the runner is shifted vertically vertical_offset: Absolute(0), // How much the runner is shifted vertically
hide_icons: false, hide_icons: false,
ignore_exclusive_zones: true, // ignore exclusive zones, f.e. Waybar ignore_exclusive_zones: false, // ignore exclusive zones, f.e. Waybar
layer: Overlay, // GTK Layer: Bottom, Top, Background, Overlay layer: Overlay, // GTK Layer: Bottom, Top, Background, Overlay
hide_plugin_info: false, hide_plugin_info: false,
plugins: [ plugins: [
@@ -107,7 +107,7 @@ Config(
position: Top, position: Top,
vertical_offset: Absolute(0), // How much the runner is shifted vertically vertical_offset: Absolute(0), // How much the runner is shifted vertically
hide_icons: false, hide_icons: false,
ignore_exclusive_zones: true, // ignore exclusive zones, f.e. Waybar ignore_exclusive_zones: false, // ignore exclusive zones, f.e. Waybar
layer: Overlay, // GTK Layer: Bottom, Top, Background, Overlay layer: Overlay, // GTK Layer: Bottom, Top, Background, Overlay
hide_plugin_info: false, hide_plugin_info: false,
plugins: [ plugins: [

15
examples/config.ron Normal file
View File

@@ -0,0 +1,15 @@
Config(
width: Absolute(800),
position: Top,
vertical_offset: Absolute(0), // How much the runner is shifted vertically
hide_icons: false,
ignore_exclusive_zones: false, // ignore exclusive zones, f.e. Waybar
layer: Overlay, // GTK Layer: Bottom, Top, Background, Overlay
hide_plugin_info: false,
plugins: [
"libapplications.so",
"libsymbols.so",
"libshell.so",
"libtranslate.so",
],
)