From 186cb22b819e040754cff470a045efad24255a2d Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 25 Oct 2021 14:12:19 -0300 Subject: [PATCH] Add notifications block --- blocks.def/notifications.sh | 22 +++++++++++++++++++ blocks.def/notifications_button.sh | 17 +++++++++++++++ blocks.def/volume.sh | 34 +++++++++++++----------------- config.def.h | 1 + 4 files changed, 55 insertions(+), 19 deletions(-) create mode 100755 blocks.def/notifications.sh create mode 100755 blocks.def/notifications_button.sh diff --git a/blocks.def/notifications.sh b/blocks.def/notifications.sh new file mode 100755 index 0000000..7993aa1 --- /dev/null +++ b/blocks.def/notifications.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +ICONmute="🔕" +ICONnotmute="🔔" + +checkIfNotificationsArePaused() { + ISPAUSED=$(dunstctl is-paused) + + if echo $ISPAUSED | grep -q "true"; then + ICON=$ICONmute + else + ICON=$ICONnotmute + fi +} + +checkIfNotificationsArePaused + +getIcon() { + printf "$ICON" +} + +getIcon diff --git a/blocks.def/notifications_button.sh b/blocks.def/notifications_button.sh new file mode 100755 index 0000000..a984ce4 --- /dev/null +++ b/blocks.def/notifications_button.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +toggleNotifications() { + dunstctl set-paused toggle +} + +refreshNotificationsBlock() { + sigdwmblocks 6 +} + +case "$1" in + #1) toggleNotifications ;; + 2) toggleNotifications ;; + #3) pactl set-sink-mute @DEFAULT_SINK@ toggle;; +esac + +refreshNotificationsBlock diff --git a/blocks.def/volume.sh b/blocks.def/volume.sh index aa15f4b..db9a2c1 100755 --- a/blocks.def/volume.sh +++ b/blocks.def/volume.sh @@ -6,6 +6,8 @@ ICONhigh="🔊" ICONmute="🔇" ICONspeakermute="🔕" ICONspeaker="🔔" +ICONheadphone="🎧" +#ICONspeaker="📢" #SINKHDMI=alsa_output.pci-0000_01_00.1.hdmi-stereo-extra1 SINKHDMI=alsa_output.pci-0000_01_00.1.hdmi-stereo @@ -28,29 +30,23 @@ MUTE=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{printf $2}') checkDefaultSink getIcon() { - #if [ `pulsemixer --get-mute` -eq 1 ]; then if [ "$MUTE" = "yes" ]; then - #ICON=$ICONmute - if [ "$SINK" = "$SINKHDMI" ]; then - ICON=$ICONspeakermute - elif [ "$SINK" = "$SINKANALOG" ]; then - ICON=$ICONmute - fi + ICON=$ICONmute else - if [ "$SINK" = "$SINKHDMI" ]; then - ICON=$ICONspeaker - elif [ "$SINK" = "$SINKANALOG" ]; then - if [ "$VOLUME" -gt "50" ]; then - ICON=$ICONhigh - elif [ "$VOLUME" -gt "20" ]; then - ICON=$ICONmid - else - ICON=$ICONlow - fi + if [ "$VOLUME" -gt "50" ]; then + ICON=$ICONhigh + elif [ "$VOLUME" -gt "20" ]; then + ICON=$ICONmid + else + ICON=$ICONlow fi fi - - printf "$ICON %s" "$VOLUME%" + + if [ "$SINK" = "$SINKHDMI" ]; then + printf "$ICON %s" "$VOLUME%" + elif [ "$SINK" = "$SINKANALOG" ]; then + printf "$ICON %s" "$VOLUME% $ICONheadphone" + fi } getIcon diff --git a/config.def.h b/config.def.h index 2bd647f..6b3fa4a 100644 --- a/config.def.h +++ b/config.def.h @@ -46,6 +46,7 @@ static Block blocks[] = { /* pathu pathc interval signal */ { PATH("time.sh"), PATH("time_button.sh"), 1, 1}, //{ PATH("weather.sh"), PATH("weather_button.sh"), 900, 5}, + { PATH("notifications.sh"), PATH("notifications_button.sh"), 0, 6}, { PATH("volume.sh"), PATH("volume_button.sh"), 0, 2}, { PATH("mail.sh"), PATH("mail_button.sh"), 0, 3}, { PATH("cpu_temp.sh"), PATH("cpu_temp_button.sh"), 15, 4},