59 lines
990 B
Nix
59 lines
990 B
Nix
{...}: {
|
|
programs.wofi.settings = {
|
|
location = "center";
|
|
allow_images = true;
|
|
allow_markup = true;
|
|
key_expand = "Tab";
|
|
key_up = "Control_L-k";
|
|
key_down = "Control_L-j";
|
|
key_left = "Control_L-h";
|
|
key_right = "Control_L-l";
|
|
};
|
|
|
|
programs.wofi.style = ''
|
|
window {
|
|
background-color: #3B4252;
|
|
border-radius = 5px;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border-radius: 0px;
|
|
border: none;
|
|
background-color: #3B4252;
|
|
color: white;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: #383C4A;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 2px;
|
|
padding: 10px;
|
|
background-color: #383C4A;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
}
|
|
|
|
#text {
|
|
padding: 4px;
|
|
color: white;
|
|
}
|
|
|
|
#entry:nth-child(even){
|
|
background-color: #404552;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #4C566A;
|
|
}
|
|
|
|
#text:selected {
|
|
background: transparent;
|
|
}
|
|
'';
|
|
}
|