Fix zstatus frame glitch and add anyrun

main
Julius Riegel 6 months ago
parent 55100c37da
commit 7eb48913c6

@ -0,0 +1,50 @@
Config(
// 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
// 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: Fraction(0.25),
// 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),
// Hide match and plugin info icons
hide_icons: false,
// ignore exclusive zones, f.e. Waybar
ignore_exclusive_zones: false,
// Layer shell layer: Background, Bottom, Top, Overlay
layer: Overlay,
// 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",
"libtranslate.so",
"librink.so",
"libstdin.so",
"libshell.so",
],
)

@ -25,6 +25,7 @@ config:needs("git", "nushell/scripts/git.nu")
config:needs("pueue", "pueue") config:needs("pueue", "pueue")
config:needs("pueue", "nushell/scripts/task.nu") config:needs("pueue", "nushell/scripts/task.nu")
config:needs("pueue", "systemd/user/pueued.service") config:needs("pueue", "systemd/user/pueued.service")
config:needs("anyrun", "anyrun")
config:needs("npm", "nushell/completions/npm-completions.nu") config:needs("npm", "nushell/completions/npm-completions.nu")

@ -12,7 +12,6 @@ layout {
format_center "{command_notify}" format_center "{command_notify}"
format_space "" format_space ""
hide_frame_for_single_pane "true"
tab_normal "#[fg=#181825,bg=#4C4C59] #[fg=#000000,bg=#4C4C59]{index}  {name} #[fg=#4C4C59,bg=#181825]" tab_normal "#[fg=#181825,bg=#4C4C59] #[fg=#000000,bg=#4C4C59]{index}  {name} #[fg=#4C4C59,bg=#181825]"
tab_normal_fullscreen "#[fg=#6C7086,bg=#181825] {index} {name} [] " tab_normal_fullscreen "#[fg=#6C7086,bg=#181825] {index} {name} [] "
@ -60,7 +59,7 @@ layout {
name "Terminal" name "Terminal"
size "30%" size "30%"
command "nu" command "nu"
args "-e" "clear; onefetch --no-art --no-color-palette --text-colors 7 10 11 12 7 15 --type programming markup prose data" args "-e" "clear; onefetch --no-art --no-color-palette --text-colors 7 10 11 12 7 15 --type programming markup prose"
} }
} }
} }

Loading…
Cancel
Save