add dunst configuration
This commit is contained in:
parent
9cb6b9e34d
commit
85bf27d8b3
BIN
.config/dunst/beep.m4a
Normal file
BIN
.config/dunst/beep.m4a
Normal file
Binary file not shown.
24
.config/dunst/dunstrc
Normal file
24
.config/dunst/dunstrc
Normal file
@ -0,0 +1,24 @@
|
||||
[global]
|
||||
follow = mouse
|
||||
font = Fantasque Sans Mono 8
|
||||
frame_width = 1
|
||||
always_run_script = true
|
||||
|
||||
[urgency_low]
|
||||
background = "#161510"
|
||||
foreground = "#cccccc"
|
||||
frame_color = "#727a18"
|
||||
|
||||
[urgency_normal]
|
||||
background = "#161510"
|
||||
foreground = "#cccccc"
|
||||
frame_color = "#727a18"
|
||||
|
||||
[urgency_critical]
|
||||
background = "#161510"
|
||||
foreground = "#cccccc"
|
||||
frame_color = "#727a18"
|
||||
|
||||
[notify]
|
||||
summary = "*"
|
||||
script = ~/.config/dunst/notification_handler.sh
|
3
.config/dunst/notification_handler.sh
Executable file
3
.config/dunst/notification_handler.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
mpv ~/.config/dunst/beep.m4a
|
15
home/dunst/default.nix
Normal file
15
home/dunst/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ lib, config, pkgs, home, ... }:
|
||||
|
||||
{
|
||||
home.file = {
|
||||
".config/dunst/dunstrc" = {
|
||||
source = ../../.config/dunst/dunstrc;
|
||||
};
|
||||
".config/dunst/notification_handler.sh" = {
|
||||
source = ../../.config/dunst/notification_handler.sh;
|
||||
};
|
||||
".config/dunst/beep.m4a" = {
|
||||
source = ../../.config/dunst/beep.m4a;
|
||||
};
|
||||
};
|
||||
}
|
@ -4,6 +4,7 @@
|
||||
imports = [
|
||||
./bspwm
|
||||
./brave
|
||||
./dunst
|
||||
./sx
|
||||
./sxhkd
|
||||
./tridactyl
|
||||
|
Loading…
Reference in New Issue
Block a user