diff --git a/README.md b/README.md index 2bafb8e..36c9929 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Config( position: Top, vertical_offset: Absolute(0), // How much the runner is shifted vertically 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 hide_plugin_info: false, plugins: [ @@ -107,7 +107,7 @@ Config( position: Top, vertical_offset: Absolute(0), // How much the runner is shifted vertically 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 hide_plugin_info: false, plugins: [ diff --git a/examples/config.ron b/examples/config.ron new file mode 100644 index 0000000..fbab1e5 --- /dev/null +++ b/examples/config.ron @@ -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", + ], +)