This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/statusbar/sb-volume

29 lines
731 B
Bash
Executable File

#!/usr/bin/env sh
######################################################################
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
# @file : sb-volume
# @license : GPLv3
# @created : Saturday Feb 13, 2021 17:51:16 CET
#
# @description : volume block for dwmblocks
######################################################################
vol="$(pulsemixer --get-volume | awk -F " " '{ printf "%d", $1 }')"
if [ "1" = $(pulsemixer --get-mute) ]; then
icon=""
else
if [ "$vol" -gt "70" ]; then
icon=""
elif [ "$vol" -lt "30" ]; then
icon=""
else
icon=""
fi
fi
printf " %s %3d%% " $icon $vol