mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 16:43:05 +02:00
git-subtree-dir: linux_configuration git-subtree-mainline:11427631cdgit-subtree-split:0762e3d07b
20 lines
452 B
Bash
Executable File
20 lines
452 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the current volume level and mute status
|
|
volume=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}' | tr -d '%')
|
|
mute=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
|
|
color="#50FA7B"
|
|
|
|
# Determine icon and color based on mute status
|
|
if [ "$mute" = "yes" ]; then
|
|
icon="🔇" # Muted
|
|
color="#FF5555"
|
|
else
|
|
icon="🔊" # Volume icon
|
|
fi
|
|
|
|
# Output the volume with icon and color
|
|
echo "$icon $volume%"
|
|
echo
|
|
echo "$color"
|