mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 17:38:45 +00:00
Add hyprstack config
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
volume=$(wpctl get-volume @DEFAULT_AUDIO_SINK@)
|
||||
#todo fix 100% case
|
||||
|
||||
volume_value=$(echo $volume | cut -d':' -f2)
|
||||
|
||||
if [ $volume_value == "0.00" ]; then
|
||||
echo "0"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
if [[ $volume_value =~ ^" 1" ]]; then
|
||||
echo "${volume_value//.}"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
volume_percent=$(echo $volume_value | cut -d'.' -f2)
|
||||
|
||||
echo $volume_percent
|
||||
Reference in New Issue
Block a user