summaryrefslogtreecommitdiff
path: root/common/home/services/dunst/default.nix
blob: 63ff5855d308e7f9313d833059f98da0d87111ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ ... }:
{
	enable = true;
	settings = {
		global = {
			width = 300;
			height = 300;
			offset = "30x30";
			origin = "top-right";
			transparency = 5;
			frame_color = "#3c3836";
			frame_width = 1;
			corner_radius = 5;
			font = "SauceCodePro NF 9";
			follow = "mouse";

			progress_bar_height = 5;
			progress_bar_corner_radius = 4;
			progress_bar_frame_width = 1;
			progress_bar_frame_color = "#3c3836";

			highlight = "#ebdbb2";
		};

		urgency_normal = {
			background = "#282828";
			foreground = "#ebdbb2";
			timeout = 10;
		};
	};
}