summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-09-18 13:57:25 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-09-18 13:57:25 -0400
commita092749c672c997a40decb1afd1dd20fdc9deb60 (patch)
treea5112ed585ea7452d675bbc7d97b722ec124ea5b
parent969b0e66938b7690007bf2d0ede1fa93e7a5ff61 (diff)
use dunst instead of xfce4-notifyd
-rwxr-xr-x.config/wmii-hg/autostart2
-rw-r--r--.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml6
-rwxr-xr-x.local/bin/notifyd14
3 files changed, 7 insertions, 15 deletions
diff --git a/.config/wmii-hg/autostart b/.config/wmii-hg/autostart
index 8b04940..23de062 100755
--- a/.config/wmii-hg/autostart
+++ b/.config/wmii-hg/autostart
@@ -4,7 +4,7 @@
daemon xcompmgr &> /dev/null
daemon lxpanel &> /dev/null
daemon nm-applet &> /dev/null
-daemon notifyd &> /dev/null
+daemon dunst &> /dev/null
#Action rbar_cpu 01 &
#Action rbar_wifi 97 &
diff --git a/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
new file mode 100644
index 0000000..2dd5c11
--- /dev/null
+++ b/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<channel name="xfce4-notifyd" version="1.0">
+ <property name="notify-location" type="uint" value="2"/>
+ <property name="initial-opacity" type="double" value="1.000000"/>
+</channel>
diff --git a/.local/bin/notifyd b/.local/bin/notifyd
deleted file mode 100755
index ddd5971..0000000
--- a/.local/bin/notifyd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-connected_to_x_server() {
- xdpyinfo &>/dev/null
- return $?
-}
-
-start_backend() {
- /usr/lib/xfce4/notifyd/xfce4-notifyd
-}
-
-while connected_to_x_server; do
- start_backend
-done