summaryrefslogtreecommitdiff
path: root/common/home/services/dunst/default.nix
blob: 28438e056a2c6fa8bd6bf525984228b0caf03116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ ... }:
{
	enable = true;
	settings = {
		global = {
			width = 300;
			height = 300;
			offset = "30x30";
			origin = "top-right";
			transparency = 0;
			frame_color = "#b16286";
			corner_radius = 5;
			font = "SauceCodePro NF 9";
		};

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