dunst: use catppuccin macchiato theme, switch to JetBrains Mono font
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m16s
Periodic flake update / flake-update (push) Successful in 2m24s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 23:41:23 +01:00
parent a69e129c77
commit 2cea0a853b
3 changed files with 11 additions and 18 deletions

View File

@@ -110,6 +110,8 @@
};
programs.home-manager.enable = true;
services.dunst.settings.global.monitor = "DP-1";
# Custom options
torjus.home.obs = {
enable = true;

View File

@@ -61,6 +61,7 @@
homeDirectory = "/home/${user}";
stateVersion = "23.11";
};
services.dunst.settings.global.monitor = "eDP-1";
torjus.home.obs.enable = true;
programs.home-manager.enable = true;
};

View File

@@ -4,6 +4,11 @@
}:
{
catppuccin.dunst = {
enable = true;
flavor = "macchiato";
};
services.dunst = {
enable = true;
iconTheme = {
@@ -13,7 +18,7 @@
settings = {
global = {
origin = "top-right";
monitor = "4";
follow = "none";
alignment = "left";
vertical_alignment = "center";
width = "(0, 400)";
@@ -36,10 +41,8 @@
history_length = 20;
always_run_script = true;
corner_radius = 10;
# follow = "mouse";
font = "Source Sans Pro 10";
format = "<b>%s</b>\\n%b"; # format = "<span foreground='#f3f4f5'><b>%s %p</b></span>\n%b"
frame_color = "#232323";
font = "JetBrainsMono Nerd Font 10";
format = "<b>%s</b>\\n%b";
frame_width = 1;
offset = "(15, 15)";
horizontal_padding = 10;
@@ -61,19 +64,6 @@
fullscreen_delay_everything = {
fullscreen = "delay";
};
urgency_critical = {
background = "#d64e4e";
foreground = "#f0e0e0";
};
urgency_low = {
background = "#232323";
foreground = "#2596be";
};
urgency_normal = {
background = "#1e1e2a";
foreground = "#2596be";
};
};
};
}