mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:03:55 -05:00
Aly Raffauf
da2cbecbe7
* switch default gtk theme and colors to adw-gtk3 * vscodium: move to adwaita * home/theme: switch qt theme to Adwaita-dark * wlogout: migrate to adwaita and improve look and feel * nixpkgs: remove adwaita overrides * plymouth: remove catppuccin theme * home/chromium: remove catppuccin theme * emacs: remove catppuccin * home/neovim: catppuccin -> ayu * nixos/base: remove catppuccin console colors * home/theme: switch to Bibata cursors * nixos/lightdm: conform to default home theme * home: remove theme overrides * qlogout: fix regression with button:focus keeping entries highlighted when unhovered * format with alejandra * home/waybar: match colors to adwaita * home/fuzzel: match selection colors with theme.colors * mauville: remove overrided vscode theme * aly: use firefox gnome theme * rustboro: decrease cursor size override * nixos/options: remove catppuccin references * home/theme: fixed regression in theme.gtk.hideTitleBar
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.fuzzel.enable {
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
border = {
|
|
radius = 10;
|
|
width = 2;
|
|
};
|
|
|
|
main = {
|
|
font = "${config.ar.home.theme.terminalFont.name}:size=${toString config.ar.home.theme.terminalFont.size}";
|
|
icon-theme = "${config.ar.home.theme.iconTheme.name}";
|
|
layer = "overlay";
|
|
lines = 3;
|
|
terminal = lib.getExe config.ar.home.defaultApps.terminal;
|
|
width = 36;
|
|
};
|
|
|
|
colors = {
|
|
background = "${config.ar.home.theme.colors.background}CC";
|
|
border = "${config.ar.home.theme.colors.primary}EE";
|
|
selection = "${config.ar.home.theme.colors.background}FF";
|
|
selection-match = "${config.ar.home.theme.colors.primary}FF";
|
|
selection-text = "${config.ar.home.theme.colors.secondary}FF";
|
|
text = "${config.ar.home.theme.colors.text}FF";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|