From f47ed175a3983cc3013a8c6025344266f29d8df6 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 18 Dec 2021 08:51:08 -0500 Subject: [PATCH] Update notify-send.py path in deadd control script - Replaced notify-send.py pip package with AUR package - Update deadd control script to use new system path of notify-send.py --- .scripts/deadd.sh | 6 +++--- README.org | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.scripts/deadd.sh b/.scripts/deadd.sh index 11224a1..81dbc54 100755 --- a/.scripts/deadd.sh +++ b/.scripts/deadd.sh @@ -62,7 +62,7 @@ main() { killall deadd-notificat fi - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:reloadStyle @@ -81,12 +81,12 @@ main() { --pause) notify-send "Pausing Notifications" - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:pausePopups > /dev/null 2>&1 ;; --unpause) - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:unpausePopups > /dev/null 2>&1 diff --git a/README.org b/README.org index 09f6f08..d57ab0a 100644 --- a/README.org +++ b/README.org @@ -1282,7 +1282,7 @@ main() { killall deadd-notificat fi - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:reloadStyle @@ -1301,12 +1301,12 @@ main() { --pause) notify-send "Pausing Notifications" - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:pausePopups > /dev/null 2>&1 ;; --unpause) - /home/sravan/.local/bin/notify-send.py a --hint \ + /usr/bin/notify-send.py a --hint \ boolean:deadd-notification-center:true \ string:type:unpausePopups > /dev/null 2>&1