added mangohud smartd and wofi config

This commit is contained in:
Tyler Kelley 2024-05-17 02:58:47 -05:00
parent aaf53995de
commit 68ac4b1325
2 changed files with 42 additions and 1 deletions

View File

@ -160,7 +160,6 @@ in
slurp
gnome.file-roller
swaynotificationcenter
rofi-wayland
imv
transmission-gtk
distrobox

View File

@ -305,6 +305,48 @@ in
enable = true;
package = pkgs.starship;
};
wofi = {
enable = true;
settings = {
allow_images = true;
width = "25%";
hide_scroll = true;
term = "kitty";
show = "drun";
};
style = ''
* {
font-family: JetBrainsMono Nerd Font Mono,monospace;
font-weight: bold;
}
#window {
border-radius: 40px;
background: #${palette.base00};
}
#input {
border-radius: 100px;
margin: 20px;
padding: 15px 25px;
background: #${palette.base00};
color: #${palette.base05};
}
#outer-box {
font-weight: bold;
font-size: 14px;
}
#entry {
margin: 10px 80px;
padding: 20px 20px;
border-radius: 200px;
}
#entry:selected{
background-color:#${palette.base0F};
color: #${palette.base00};
}
#entry:hover {
}
'';
};
bash = {
enable = true;
enableCompletion = true;