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