aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2016-08-12 17:27:33 +0200
committerKarel Kočí <karel.koci@nic.cz>2016-08-12 17:27:33 +0200
commit6c60a88d2bc3b99e81fcf3fd4ce4bb6a1a848e85 (patch)
tree77267cd828d2aff4672260af72ed9acfc209d868
parent0d139c4351b16da214e9efa09abe716fc164e1e2 (diff)
downloadmyconfigs-6c60a88d2bc3b99e81fcf3fd4ce4bb6a1a848e85.tar.gz
myconfigs-6c60a88d2bc3b99e81fcf3fd4ce4bb6a1a848e85.tar.bz2
myconfigs-6c60a88d2bc3b99e81fcf3fd4ce4bb6a1a848e85.zip
Add dunst as inotify frontend
-rw-r--r--config/dunst/dunstrc76
-rw-r--r--config/i3/config3
-rwxr-xr-xinstall1
3 files changed, 80 insertions, 0 deletions
diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc
new file mode 100644
index 0000000..f8721c2
--- /dev/null
+++ b/config/dunst/dunstrc
@@ -0,0 +1,76 @@
+[global]
+ font = "Monospace 8"
+ allow_markup = yes
+ format = "<b>%s %p</b>\n%b"
+ sort = yes
+ indicate_hidden = true
+ # geometry = "x5"
+ idle_threshold = 0
+ geometry = "280x5-0+19"
+ alignment = center
+ show_age_threshold = 60
+ sticky_history = yes
+ follow = mouse
+ word_wrap = yes
+ separator_height = 1
+ padding = 3
+ horizontal_padding = 3
+ separator_color = frame
+ startup_notification = false
+ dmenu = "/usr/bin/dmenu -p dunst: -nb #FFFFFF -nf #000000 -sb #94DBFF -sf #000000"
+ browser = conkeror
+
+
+[frame]
+ width = 1
+ color = "#4c7899"
+
+[shortcuts]
+ close = ctrl+space
+ close_all = ctrl+shift+space
+ history = ctrl+grave
+ context = ctrl+shift+period
+
+[urgency_low]
+ background = "#000000"
+ foreground = "#ffffff"
+ timeout = 30
+
+[urgency_normal]
+ background = "#000000"
+ foreground = "#94DBFF"
+ timeout = 45
+
+[urgency_critical]
+ background = "#000000"
+ foreground = "#ff9999"
+ timeout = 0
+
+
+[libpurple_signed]
+ appname = libpurple
+ summary = *igned*
+ urgency = low
+ timeout = 3
+ background = "#ccff33"
+
+[libpurple_came_back]
+ appname = libpurple
+ summary = "*came*"
+ format = ""
+
+[libpurple_went_away]
+ appname = libpurple
+ summary = "*went*"
+ format = ""
+
+[libpurple_says]
+ appname = libpurple
+ summary = *ays*
+ urgency = critical
+ background = "#ccff33"
+
+[libpurple]
+ appname = libpurple
+ urgency = critical
+ background = "#ccff33"
diff --git a/config/i3/config b/config/i3/config
index 11aab41..4ea7ac5 100644
--- a/config/i3/config
+++ b/config/i3/config
@@ -235,3 +235,6 @@ bar {
#status_command i3status
tray_output primary
}
+
+# Start daemons
+exec --no-startup-id dunst
diff --git a/install b/install
index 06bcb5c..becc24c 100755
--- a/install
+++ b/install
@@ -33,6 +33,7 @@ if [[ $REPLY =~ ^[Yy]?$ ]]; then
inst config/i3/ ~/.config/i3
inst config/i3blocks/ ~/.config/i3blocks
inst config/i3status/ ~/.config/i3status
+ inst config/dunst/ ~/.config/dunst
inst local/bin/mxrandr ~/.local/bin/mxrandr
fi