hell n back
This commit is contained in:
parent
3ee6761b45
commit
cac7203033
45 changed files with 2988 additions and 177 deletions
11
modules/wofi/default.nix
Normal file
11
modules/wofi/default.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
|
||||
with lib;
|
||||
let cfg = config.modules.wofi;
|
||||
|
||||
in {
|
||||
options.modules.wofi = { enable = mkEnableOption "wofi"; };
|
||||
config = mkIf cfg.enable {
|
||||
home.file.".config/wofi.css".source = ./wofi.css;
|
||||
};
|
||||
}
|
||||
35
modules/wofi/wofi.css
Normal file
35
modules/wofi/wofi.css
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
* {
|
||||
all: unset;
|
||||
font-family: "JetBrainsMono";
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#window {
|
||||
background-color: #292a37;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
background-color: #292a37;
|
||||
border: 4px solid #44465c;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
#input{
|
||||
margin: 1rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 10px;
|
||||
background-color: #303241;
|
||||
}
|
||||
|
||||
#entry {
|
||||
margin: 0.25rem 0.75rem 0.25rem 0.75rem;
|
||||
padding: 0.25rem 0.75rem 0.25rem 0.75rem;
|
||||
color: #9699b7;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: #303241;
|
||||
color: #d9e0ee;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue