From 0bc8492c51a3894ddf3bfd68f73483e547de9cb0 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 9 Nov 2021 23:58:51 -0300 Subject: [PATCH] Update notif block --- blocks.def/notifications_button.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/blocks.def/notifications_button.sh b/blocks.def/notifications_button.sh index a984ce4..ea54fb5 100755 --- a/blocks.def/notifications_button.sh +++ b/blocks.def/notifications_button.sh @@ -4,12 +4,16 @@ toggleNotifications() { dunstctl set-paused toggle } +getNotifications() { + dunstctl history-pop +} + refreshNotificationsBlock() { sigdwmblocks 6 } case "$1" in - #1) toggleNotifications ;; + 1) getNotifications ;; 2) toggleNotifications ;; #3) pactl set-sink-mute @DEFAULT_SINK@ toggle;; esac