mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
wofi config rework
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
./swaync
|
./swaync
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
./waybar
|
./waybar
|
||||||
./wofi.nix
|
./wofi
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
programs.wofi = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
13
home-manager/modules/wofi/default.nix
Normal file
13
home-manager/modules/wofi/default.nix
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
programs.wofi = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
allow_markup = true;
|
||||||
|
allow_images = true;
|
||||||
|
width = 350;
|
||||||
|
height = 450;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file.".config/wofi/style.css".source = ./style.css;
|
||||||
|
}
|
44
home-manager/modules/wofi/style.css
Normal file
44
home-manager/modules/wofi/style.css
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
window {
|
||||||
|
margin: 0px;
|
||||||
|
border: 5px solid;
|
||||||
|
border-image: linear-gradient(135deg, #d65d0e 0%, #98971a 100%) 1;
|
||||||
|
background-color: #282828;
|
||||||
|
font-family: "JetBrains Mono";
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: #ebdbb2;
|
||||||
|
background-color: #1d2021;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inner-box {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
background-color: #282828;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outer-box {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
background-color: #282828;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scroll {
|
||||||
|
margin: 0px;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: #ebdbb2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected {
|
||||||
|
background-color: #d65d0e;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
Reference in New Issue
Block a user