This commit is contained in:
dashie 2024-01-09 17:45:21 +00:00
parent 4ce842086d
commit 6cbde4a575
48 changed files with 708 additions and 2310 deletions

View file

@ -1,17 +1,20 @@
Config(
// `width` and `vertical_offset` use an enum for the value it can be either:
// Position/size fields 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),
// The horizontal position, adjusted so that Relative(0.5) always centers the runner
x: Fraction(0.5),
// The vertical position, works the same as `x`
y: Absolute(0),
// The width of the runner
width: Absolute(800),
// The minimum height of the runner, the runner will expand to fit all the entries
height: Absolute(0),
// Where Anyrun is located on the screen: Top, Center
position: Center,
// How much the runner is shifted vertically
vertical_offset: Absolute(0),
// Hide match and plugin info icons
hide_icons: false,
@ -23,13 +26,22 @@ Config(
// Hide the plugin info panel
hide_plugin_info: false,
// Close window when a click outside the main box is received
close_on_click: false,
// Show search results immediately when Anyrun starts
show_results_immediately: false,
// Limit amount of entries shown in total
max_entries: None,
// List of plugins to be loaded by default, can be specified with a relative path to be loaded from the
// `<anyrun config dir>/plugins` directory or with an absolute path to just load the file the path points to.
plugins: [
"libapplications.so",
"libsymbols.so",
"libshell.so",
"librink.so",
"libanyrun_websearch.so"
"libtranslate.so",
],
)

Binary file not shown.

Binary file not shown.

BIN
anyrun/plugins/libdictionary.so Executable file

Binary file not shown.

Binary file not shown.

BIN
anyrun/plugins/librandr.so Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
anyrun/plugins/libstdin.so Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
anyrun/plugins/libwebsearch.so Executable file

Binary file not shown.