Update dunst config
This commit is contained in:
parent
c1623b38c2
commit
3558131bc9
1 changed files with 39 additions and 3 deletions
|
@ -1,6 +1,16 @@
|
||||||
# -*- mode: conf-unix; -*-
|
# -*- mode: conf-unix; -*-
|
||||||
[global]
|
[global]
|
||||||
font = Monaco-12
|
font = "Liberation Mono-12"
|
||||||
|
|
||||||
|
# allow a small subset of html markup:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough<s/>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# for a complete reference see http://developer.gnome.org/pango/stable/PangoMarkupFormat.html
|
||||||
|
# If markup is not allowed, those tags will be stripped out of the message.
|
||||||
|
allow_markup = yes
|
||||||
|
|
||||||
# The format of the message. Possible variables are:
|
# The format of the message. Possible variables are:
|
||||||
# %a appname
|
# %a appname
|
||||||
|
@ -34,6 +44,9 @@
|
||||||
# split long notifications into multiple lines
|
# split long notifications into multiple lines
|
||||||
word_wrap = yes
|
word_wrap = yes
|
||||||
|
|
||||||
|
# ignore newlines '\n' in notifications
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
|
||||||
# the geometry of the window
|
# the geometry of the window
|
||||||
# geometry [{width}]x{height}][+/-{x}+/-{y}]
|
# geometry [{width}]x{height}][+/-{x}+/-{y}]
|
||||||
|
@ -44,7 +57,10 @@
|
||||||
# the window expands to the longest message displayed.
|
# the window expands to the longest message displayed.
|
||||||
# A positive x is measured from the left, a negative from the
|
# A positive x is measured from the left, a negative from the
|
||||||
# right side of the screen. Y is measured from the top and down respectevly.
|
# right side of the screen. Y is measured from the top and down respectevly.
|
||||||
geometry = "0x3-30+20"
|
geometry = "300x5-30+20"
|
||||||
|
|
||||||
|
# Shrink window if it's smaller than the width. Will be ignored if width is 0.
|
||||||
|
shrink = no
|
||||||
|
|
||||||
# The transparency of the window. range: [0; 100]
|
# The transparency of the window. range: [0; 100]
|
||||||
# This option will only work if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc..)
|
# This option will only work if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc..)
|
||||||
|
@ -68,7 +84,7 @@
|
||||||
#
|
#
|
||||||
# If this option is set to mouse or keyboard, the monitor option will be
|
# If this option is set to mouse or keyboard, the monitor option will be
|
||||||
# ignored.
|
# ignored.
|
||||||
follow = none
|
follow = keyboard
|
||||||
|
|
||||||
# should a notification popped up from history be sticky or
|
# should a notification popped up from history be sticky or
|
||||||
# timeout as if it would normally do.
|
# timeout as if it would normally do.
|
||||||
|
@ -83,11 +99,31 @@
|
||||||
# Set to 0 to disable
|
# Set to 0 to disable
|
||||||
separator_height = 2;
|
separator_height = 2;
|
||||||
|
|
||||||
|
# padding between text and separator
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# horizontal padding
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
# Define a color for the separator.
|
# Define a color for the separator.
|
||||||
# This can either be "auto" or "foreground". "Auto" tries to find a color
|
# This can either be "auto" or "foreground". "Auto" tries to find a color
|
||||||
# that fits nicely to the background color.
|
# that fits nicely to the background color.
|
||||||
separator_color = auto
|
separator_color = auto
|
||||||
|
|
||||||
|
# print a notification on startup
|
||||||
|
# This is mainly for error detection, since dbus (re-)starts dunst
|
||||||
|
# automatically after a crash.
|
||||||
|
startup_notification = false
|
||||||
|
|
||||||
|
# dmenu path
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
|
# browser for opening urls in context menu
|
||||||
|
browser = /usr/bin/firefox -new-tab
|
||||||
|
|
||||||
|
[frame]
|
||||||
|
width = 3
|
||||||
|
color = "#aaaaaa"
|
||||||
|
|
||||||
[shortcuts]
|
[shortcuts]
|
||||||
# shortcuts are specified as [modifier+][modifier+]...key
|
# shortcuts are specified as [modifier+][modifier+]...key
|
||||||
|
|
Loading…
Reference in a new issue