From 0ce7fe3cb4a39d3a4b8149927be1ce55aceca6b3 Mon Sep 17 00:00:00 2001 From: xeals Date: Tue, 15 Jan 2019 21:31:45 +1100 Subject: [PATCH] fix: use xfce4-notifyd for dbus notifications --- cfg.fnl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cfg.fnl b/cfg.fnl index 67ba5ca..8c1f4ea 100644 --- a/cfg.fnl +++ b/cfg.fnl @@ -2,9 +2,15 @@ (local awful (require :awful)) (require :awful.autofocus) -(local naughty (require :naughty)) (local beautiful (require :beautiful)) +;; HACK Use xfce4-notifyd for dbus integration. +;; Purely for pa-applet until a better solution is found. +(local _dbus dbus) +(set _G.dbus nil) +(local naughty (require :naughty)) +(set _G.dbus _dbus) + (beautiful.init (require :theme)) (require :module.decorate)