diff options
author | ubq323 <ubq323@ubq323.website> | 2023-08-17 20:27:50 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-08-17 20:27:50 +0100 |
commit | 46596692dcbd30c8d105d79b96aacc8b9f3bd12f (patch) | |
tree | 4afa514392f2f6338642258db52e863831384c93 /bin | |
parent | fce7ca54f045c8b9259a7ed504a4d672651aac2b (diff) |
pasting, pipewire
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/status.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/status.sh b/bin/status.sh index dd75c41..a618f5b 100755 --- a/bin/status.sh +++ b/bin/status.sh @@ -24,9 +24,9 @@ puts '[' while true; do puts '[' - volinfo="$(amixer get Master | grep 'Mono:')" + volinfo="$(amixer get Master | grep 'Front Left:')" vol_level="$(printf %s "$volinfo" | awk -F'[][]' '{print $2}')" - vol_enabled="$(printf %s "$volinfo" | awk -F'[][]' '{print $6}')" + vol_enabled="$(printf %s "$volinfo" | awk -F'[][]' '{print $4}')" color="#ffffff"; bl=""; br="" [ "$vol_enabled" = "off" ] && { color="#ffff00"; bl="("; br=")"; } block_color "vol $bl$vol_level$br" "$color" |