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
This commit is contained in:
Sravan Balaji
2021-12-18 08:51:08 -05:00
parent 7ef1ed6879
commit f47ed175a3
2 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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