diff options
-rwxr-xr-x | .config/wmii-hg/autostart | 2 | ||||
-rw-r--r-- | .config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml | 6 | ||||
-rwxr-xr-x | .local/bin/notifyd | 14 |
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 |