mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Add dunst
This commit is contained in:
parent
4584e98557
commit
7a4f784d0f
3 changed files with 44 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,6 +5,7 @@
|
|||
!machines/enka/bat/
|
||||
!machines/enka/discord/
|
||||
!machines/enka/docker/
|
||||
!machines/enka/dunst/
|
||||
!machines/enka/firefox/
|
||||
!machines/enka/fuzzel/
|
||||
!machines/enka/git/
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
./bat
|
||||
./discord
|
||||
./docker
|
||||
./dunst
|
||||
./firefox
|
||||
./fuzzel
|
||||
./git
|
||||
|
|
42
machines/enka/dunst/default.nix
Normal file
42
machines/enka/dunst/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ pkgs, homeConfiguration, enabled, ... }:
|
||||
|
||||
homeConfiguration "nixos" {
|
||||
services.dunst = enabled {
|
||||
iconTheme = {
|
||||
name = "gruvbox-dark";
|
||||
package = pkgs.gruvbox-dark-icons-gtk;
|
||||
};
|
||||
|
||||
settings = {
|
||||
global = {
|
||||
horizontal_padding = 10;
|
||||
padding = 10;
|
||||
|
||||
frame_color = "#D79921";
|
||||
frame_width = 1;
|
||||
seperator_color = "frame";
|
||||
|
||||
background = "#1D2021";
|
||||
foreground = "#DDC7A1";
|
||||
|
||||
alignment = "left";
|
||||
font = "JetBrainsMono 12";
|
||||
};
|
||||
|
||||
urgency_low = {
|
||||
frame_color = "#94A6FF";
|
||||
timeout = 5;
|
||||
};
|
||||
|
||||
urgency_normal = {
|
||||
frame_color = "#FAA41A";
|
||||
timeout = 10;
|
||||
};
|
||||
|
||||
urgency_critical = {
|
||||
frame_color = "#F15D22";
|
||||
timeout = 15;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue