summaryrefslogtreecommitdiff
path: root/pywal/util.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2018-02-04 15:52:24 +1100
committerDylan Araps <dylan.araps@gmail.com>2018-02-04 15:52:24 +1100
commit775ceccf3a4f22ec01e2b6a9280d60d0c4b1a8af (patch)
treef3b5550b3f5579c80d4a2cf00a8fa56ffd0921d6 /pywal/util.py
parent63b6e35cd7818a27c9ebcef0c911e5dd8eb28291 (diff)
misc: fixes
Diffstat (limited to 'pywal/util.py')
-rw-r--r--pywal/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/util.py b/pywal/util.py
index a2325e8..1302e13 100644
--- a/pywal/util.py
+++ b/pywal/util.py
@@ -146,7 +146,7 @@ def disown(cmd):
def msg(input_msg, notify):
"""Print to the terminal and display a libnotify
notification."""
- if notify and shutil.which("notify"):
+ if notify and shutil.which("notify-send"):
disown(["notify-send", input_msg])
print(input_msg)