103 lines
1.9 KiB
Nix
103 lines
1.9 KiB
Nix
# ABOUTME: Wofi application launcher configuration with nix-colors theming
|
|
# ABOUTME: Configures the drun launcher appearance and behavior
|
|
|
|
{ config, pkgs, ... }:
|
|
let
|
|
cfg = import ./config.nix;
|
|
palette = config.colorScheme.palette;
|
|
in
|
|
{
|
|
home.file.".config/wofi/style.css".text = ''
|
|
* {
|
|
font-family: '${cfg.monoFont}', monospace;
|
|
font-size: 18px;
|
|
}
|
|
|
|
window {
|
|
margin: 0px;
|
|
padding: 20px;
|
|
background-color: #${palette.base00};
|
|
opacity: 0.95;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: #${palette.base00};
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 0;
|
|
padding: 20px;
|
|
border: none;
|
|
background-color: #${palette.base00};
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: #${palette.base00};
|
|
}
|
|
|
|
#input {
|
|
margin: 0;
|
|
padding: 10px;
|
|
border: none;
|
|
background-color: #${palette.base00};
|
|
color: @text;
|
|
}
|
|
|
|
#input:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: #${palette.base06};
|
|
}
|
|
|
|
#entry {
|
|
background-color: #${palette.base00};
|
|
}
|
|
|
|
#entry:selected {
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: #${palette.base02};
|
|
}
|
|
|
|
#entry image {
|
|
-gtk-icon-transform: scale(0.7);
|
|
}
|
|
'';
|
|
|
|
programs.wofi = {
|
|
enable = true;
|
|
settings = {
|
|
width = 600;
|
|
height = 350;
|
|
location = "center";
|
|
show = "drun";
|
|
prompt = "Search...";
|
|
filter_rate = 100;
|
|
allow_markup = true;
|
|
no_actions = true;
|
|
halign = "fill";
|
|
orientation = "vertical";
|
|
content_halign = "fill";
|
|
insensitive = true;
|
|
allow_images = true;
|
|
image_size = 40;
|
|
gtk_dark = true;
|
|
};
|
|
};
|
|
}
|