mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
88 lines
1.7 KiB
Nix
88 lines
1.7 KiB
Nix
{ pkgs, inputs, ... }: {
|
|
programs.anyrun = {
|
|
enable = true;
|
|
config = {
|
|
plugins = with inputs.anyrun.packages.${pkgs.system}; [
|
|
applications
|
|
shell
|
|
randr
|
|
rink
|
|
symbols
|
|
translate
|
|
];
|
|
|
|
width.fraction = 0.25;
|
|
y.fraction = 0.3;
|
|
hidePluginInfo = true;
|
|
closeOnClick = true;
|
|
};
|
|
|
|
extraCss = ''
|
|
* {
|
|
all: unset;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
#window,
|
|
#match,
|
|
#entry,
|
|
#plugin,
|
|
#main {
|
|
background: transparent;
|
|
}
|
|
|
|
#match.activatable {
|
|
border-radius: 8px;
|
|
margin: 4px 0;
|
|
padding: 4px;
|
|
/* transition: 100ms ease-out; */
|
|
}
|
|
#match.activatable:first-child {
|
|
margin-top: 12px;
|
|
}
|
|
#match.activatable:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#match:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
#match:selected {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
#entry {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 8px;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
box#main {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
box-shadow:
|
|
inset 0 0 0 1px rgba(255, 255, 255, 0.1),
|
|
0 30px 30px 15px rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
padding: 12px;
|
|
}
|
|
'';
|
|
|
|
extraConfigFiles = {
|
|
"applications.ron".text = ''
|
|
Config(
|
|
desktop_actions: false,
|
|
max_entries: 5,
|
|
terminal: Some("foot"),
|
|
)
|
|
'';
|
|
|
|
"shell.ron".text = ''
|
|
Config(
|
|
prefix: ">"
|
|
)
|
|
'';
|
|
};
|
|
};
|
|
}
|