From df6491b6b5a6043dcbb61e1a77a5416177215216 Mon Sep 17 00:00:00 2001 From: Kirottu Date: Thu, 13 Apr 2023 14:19:47 +0300 Subject: [PATCH] Changed example config ignore_exclusive_zones to false, added an example config to `examples/config.ron` --- README.md | 4 ++-- examples/config.ron | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 examples/config.ron 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", + ], +)