From 51183654e84b12d38cf72d8581f950269d6b47c1 Mon Sep 17 00:00:00 2001 From: ryukamish Date: Sat, 6 Jun 2026 01:44:49 +0530 Subject: fix: directory and symlink path change --- .local/bin/volume-control | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 .local/bin/volume-control (limited to '.local/bin/volume-control') diff --git a/.local/bin/volume-control b/.local/bin/volume-control new file mode 100755 index 0000000..f47bfd1 --- /dev/null +++ b/.local/bin/volume-control @@ -0,0 +1,28 @@ +#!/bin/sh + +# Taken from: https://github.com/salanpro/hyprland/tree/047f998e710b0ffe8d841a89fb7749b50c931b2c/.config/hypr/scripts + +# Volume up and down +if [[ "$1" == "up" ]]; then + wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+ \ + && wpctl get-volume @DEFAULT_AUDIO_SINK@ | \ + awk '{print int($2*100)}' | xargs -I[] \ + notify-send -e -u low -h string:x-canonical-private-synchronous:volume_notif -h \ + int:value:[] "󰓃 Volume []" +elif [[ "$1" == "down" ]]; then + wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%- \ + && wpctl get-volume @DEFAULT_AUDIO_SINK@ | \ + awk '{print int($2*100)}' | xargs -I[] \ + notify-send -e -u low -h string:x-canonical-private-synchronous:volume_notif -h \ + int:value:[] "󰓃 Volume []" +elif [[ "$1" == "mute" ]]; then + wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle \ + && (wpctl get-volume @DEFAULT_AUDIO_SINK@ \ + | grep -q MUTED && \ + notify-send -e -u low -h \ + string:x-canonical-private-synchronous:volume_notif \ + "󰝟 Muted" || wpctl get-volume @DEFAULT_AUDIO_SINK@ | \ + awk '{print int($2*100)}' | xargs -I[] \ + notify-send -e -u low -h string:x-canonical-private-synchronous:volume_notif -h \ + int:value:[] "󰓃 Volume []") +fi -- cgit v1.3