summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/dunst-settings.nix
blob: 61bd12a6746fae735b7a4cc6c152f71e43505626 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ pkgs, ... }:
{
  global = {
    font = "Fira Sans 6";
    markup = "full";
    format = "<i>%s</i> %p\\n%b";
    alignment = "left";
    # geometry = "1216x10-32+64";
    width = 250;
    height = 50;
    offset = "16x25";
    origin = "top-right";
    shrink = true;
    monitor = 0;
    follow = "none";
    padding = 6;
    horizontal_padding = 6;
    separator_height = 1;
    separator_color = "frame";
    idle_threshold = 0;

    transparency = 10;

    frame_width = 1;
    frame_color = "#999999";

    word_wrap = true;
    show_age_threshold = 15;
    show_indicators = false;
    icon_position = "right";
    min_icon_size = 25;
    max_icon_size = 25;
    sort = false;
    sticky_history = false;

    dmenu = "${pkgs.dmenu}/bin/dmenu";
    browser = "${pkgs.xdg-utils}/bin/xdg-open";
  };
  # shortcuts = {
  #   close = "ctrl+space";
  #   close_all = "ctrl+shift+space";
  #   history = "ctrl+comma";
  #   context = "ctrl+period";
  # };
}