You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
618 B
22 lines
618 B
{ config, ... }:
|
|
let inherit (config.colorscheme) colors kind;
|
|
in {
|
|
programs.mako = {
|
|
enable = true;
|
|
iconPath =
|
|
if kind == "dark" then
|
|
"${config.gtk.iconTheme.package}/share/icons/Papirus-Dark"
|
|
else
|
|
"${config.gtk.iconTheme.package}/share/icons/Papirus-Light";
|
|
font = "${config.fontProfiles.regular.family} 12";
|
|
padding = "10,20";
|
|
anchor = "top-center";
|
|
width = 400;
|
|
height = 150;
|
|
borderSize = 2;
|
|
defaultTimeout = 12000;
|
|
backgroundColor = "#${colors.base00}dd";
|
|
borderColor = "#${colors.base03}dd";
|
|
textColor = "#${colors.base05}dd";
|
|
};
|
|
}
|
|
|