.hive/home/jonas/wofi/config.nix

80 lines
1.6 KiB
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: #3B425299; */
border-radius: 15px;
border-color: rgba(33ccffee);
border-width: 2px;
border-style: solid;
background-color: rgba(0.23, 0.26, 0.32, 0.6);
}
#input {
margin: 5px;
border-radius: 15px;
border-color: rgba(33ccffee);
border-width: 2px;
border-style: solid;
background-color: transparent;
color: white;
}
#inner-box {
/* background-color: #383C4A99; */
background-color: transparent;
}
#outer-box {
margin: 2px;
padding: 10px;
background: transparent;
}
#scroll {
margin: 5px;
}
#text {
padding: 4px;
color: white;
border: none;
}
#entry:nth-child {
background: transparent;
border: none;
}
#entry:selected {
border-radius: 15px;
border-color: rgba(33ccffee);
border-width: 2px;
border-style: solid;
background: transparent;
}
#text:selected {
background: transparent;
border: none;
}
#expander-box {
border-radius: 15px;
border-color: rgba(33ccffee);
border-width: 2px;
border-style: solid;
background: transparent;
}
'';
}