diff --git a/anyrun/config.ron b/anyrun/config.ron index 48a1e2a..9954bd4 100644 --- a/anyrun/config.ron +++ b/anyrun/config.ron @@ -1,5 +1,11 @@ Config( + // `width` and `vertical_offset` use an enum for the value it can be either: + // Absolute(n): The absolute value in pixels + // Fraction(n): A fraction of the width or height of the full screen (depends on exclusive zones and the settings related to them) window respectively + + // How wide the input box and results are. width: Absolute(800), + // Where Anyrun is located on the screen: Top, Center position: Center, @@ -24,6 +30,6 @@ Config( "libapplications.so", "libshell.so", "librink.so", - "libanyrun_websearch.so", + "libanyrun_websearch.so" ], ) diff --git a/anyrun/plugins/libapplications.so b/anyrun/plugins/libapplications.so index 4a155f3..3a7ab5e 100755 Binary files a/anyrun/plugins/libapplications.so and b/anyrun/plugins/libapplications.so differ diff --git a/anyrun/plugins/libkidex.so b/anyrun/plugins/libkidex.so index af938bb..75aba92 100755 Binary files a/anyrun/plugins/libkidex.so and b/anyrun/plugins/libkidex.so differ diff --git a/anyrun/plugins/librink.so b/anyrun/plugins/librink.so index c4a8248..58de8f5 100755 Binary files a/anyrun/plugins/librink.so and b/anyrun/plugins/librink.so differ diff --git a/anyrun/plugins/libshell.so b/anyrun/plugins/libshell.so index 1a7f373..e7341cb 100755 Binary files a/anyrun/plugins/libshell.so and b/anyrun/plugins/libshell.so differ diff --git a/anyrun/plugins/libsymbols.so b/anyrun/plugins/libsymbols.so index eca8700..e1630ea 100755 Binary files a/anyrun/plugins/libsymbols.so and b/anyrun/plugins/libsymbols.so differ diff --git a/anyrun/plugins/libtranslate.so b/anyrun/plugins/libtranslate.so index f9c3ea6..232a238 100755 Binary files a/anyrun/plugins/libtranslate.so and b/anyrun/plugins/libtranslate.so differ