1
Fork 0
satellite/home/features/wayland/anyrun.nix
2023-08-22 18:24:04 +03:00

94 lines
2.2 KiB
Nix

{ inputs, pkgs, config, ... }: {
programs.anyrun = {
enable = true;
config = {
# {{{ Plugins
plugins = with inputs.anyrun.packages.${pkgs.system}; [
applications
dictionary
rink
stdin
# symbols # Looks ugly atm
# websearch
# inputs.anyrun-nixos-options.packages.${pkgs.system}.default # Idk how to set this up :(
];
# }}}
# {{{ Geometry
x.fraction = 0.5;
y.fraction = 0.25;
width.fraction = 0.5;
# }}}
hidePluginInfo = true;
closeOnClick = true;
showResultsImmediately = true;
maxEntries = 7;
};
extraCss = ''
/* {{{ Global overrides */
#window,
#entry,
#main,
#plugin,
#match {
background: transparent;
}
* {
font-size: 2rem;
outline: none;
}
/* }}} */
/* {{{ Transparent & raised surfaces */
#entry,
list#main,
row#match:selected {
box-shadow: 0.5px 0.5px 1.5px 1.5px rgba(0, 0, 0, 0.5);
border-radius: ${toString config.satellite.theming.rounding.radius}px;
}
#entry,
list#main {
margin: 1rem;
background: rgba(${config.satellite.theming.colors.rgba "base00"});
min-height: 1rem;
}
/* }}} */
/* {{{ Input */
#entry {
font-size: 2rem;
padding: 1rem;
border: none;
}
/* }}} */
/* {{{ Matches */
row#match {
margin: 0.7rem;
margin-bottom: 0.3rem;
color: ${config.lib.stylix.scheme.withHashtag.base05};
padding: 0.5rem;
transition: none;
}
row#match:last-child {
margin-bottom: 0.7rem;
}
#match:selected {
padding: 0.5rem;
color: ${config.lib.stylix.scheme.withHashtag.base05};
background: rgba(${config.satellite.theming.colors.rgb "base03"}, 0.2);
}
/* }}} */
'';
};
# # See [the readme](https://github.com/n3oney/anyrun-nixos-options) for anyrun-nixos-options.
# programs.anyrun.extraConfigFiles."nixos-options.ron".text = ''
# Config(
# options_path: "${config.system.build.manual.optionsJSON}/share/doc/nixos/options.json"
# )
# '';
}