summary refs log tree commit diff stats
path: root/user/modules/dunst.nix
diff options
context:
space:
mode:
authorAlan Pearce2019-10-08 21:44:57 +0200
committerAlan Pearce2019-10-08 21:44:57 +0200
commit0a50d682ec85bf023bebd68a3ca388001f0c0677 (patch)
tree3f725c5a36633ec5b59df37f156a03ee2a971656 /user/modules/dunst.nix
parent40fd4964068d0b7628b6f699dab4aec200eadb0a (diff)
downloadnixfiles-0a50d682ec85bf023bebd68a3ca388001f0c0677.tar.lz
nixfiles-0a50d682ec85bf023bebd68a3ca388001f0c0677.tar.zst
nixfiles-0a50d682ec85bf023bebd68a3ca388001f0c0677.zip
mv modules settings
Diffstat (limited to 'user/modules/dunst.nix')
-rw-r--r--user/modules/dunst.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/user/modules/dunst.nix b/user/modules/dunst.nix
deleted file mode 100644
index 6d74b51b..00000000
--- a/user/modules/dunst.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ config, pkgs, ... }:
-
-{
-  services.dunst = {
-    enable = true;
-    settings = {
-      global = {
-        font = "Monospace 13";
-        geometry = "300x10-10+30";
-        follow = "none";
-        sticky_history = "yes";
-        history_length = 20;
-        show_indicators = "yes";
-        separator_height = 2;
-        padding = 8;
-        horizontal_padding = 8;
-        idle_threshold = 30;
-
-        indicate_hidden = "no";
-
-        allow_markup = "yes";
-        format = "<b>%s</b>\n%b";
-        word_wrap = "yes";
-        ignore_newline = "no";
-
-        separator_color = "frame";
-      };
-      frame = {
-        width = 1;
-        color = "#383838";
-      };
-      shortcuts = {
-        close = "mod4+apostrophe";
-        close_all = "mod4+shift+apostrophe";
-        history = "mod4+grave";
-        context = "mod4+shift+period";
-      };
-      urgency_low = {
-        background = "#b8b8b8";
-        foreground = "#f8f8f8";
-        timeout = 10;
-      };
-
-      urgency_normal = {
-        background = "#7cafc2";
-        foreground = "#f8f8f8";
-        timeout = 10;
-      };
-
-      urgency_critical = {
-        background = "#ab4642";
-        foreground = "#f8f8f8";
-        timeout = 0;
-      };
-    };
-  };
-}