dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

dunstrc (1413B)


      1 [global]
      2     monitor = 0
      3     follow = mouse
      4     geometry = "0x5-5+40"
      5 
      6     indicate_hidden = yes
      7     shrink = no
      8     notification_height = 0
      9     separator_height = 2
     10     padding = 8
     11     horizontal_padding = 8
     12     frame_width = 3
     13     frame_color = "#aaaaaa"
     14     separator_color = frame
     15     sort = yes
     16     idle_threshold = 120
     17 
     18     #font = dina 9
     19     line_height = 0
     20     markup = full
     21     format = "<b>%s</b>\n%b"
     22     alignment = left
     23     show_age_threshold = 60
     24     word_wrap = yes
     25     ellipsize = middle
     26     ignore_newline = no
     27     stack_duplicates = true
     28     hide_duplicate_count = false
     29     show_indicators = yes
     30 
     31     icon_position = off
     32     max_icon_size = 32
     33     icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
     34 
     35     sticky_history = yes
     36     history_length = 20
     37 
     38     dmenu = /usr/bin/dmenu -p dunst:
     39     browser = surf-open.sh
     40     always_run_script = true
     41     title = Dunst
     42     class = Dunst
     43     startup_notification = false
     44     force_xinerama = false
     45 
     46 [shortcuts]
     47     close = ctrl+space
     48     close_all = ctrl+shift+space
     49     history = ctrl+grave
     50     context = ctrl+shift+period
     51 
     52 [urgency_low]
     53     background = "#222222"
     54     foreground = "#888888"
     55     timeout = 10
     56 
     57 [urgency_normal]
     58     background = "#285577"
     59     foreground = "#ffffff"
     60     timeout = 10
     61 
     62 [urgency_critical]
     63     background = "#900000"
     64     foreground = "#ffffff"
     65     frame_color = "#ff0000"
     66     timeout = 0