#!/usr/bin/env bash 
if [ "$1" = "--up" ]; then
    swayosd-client --output-volume raise
    # wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
elif [ "$1" = "--down" ]; then
    swayosd-client --output-volume lower
    # wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
elif [ "$1" = "--mute" ]; then
    swayosd-client --output-volume mute-toggle
fi
