diff --git a/i3/i3status/index.js b/i3/i3status/index.js index 010f831..a944bff 100644 --- a/i3/i3status/index.js +++ b/i3/i3status/index.js @@ -164,7 +164,7 @@ const getBrightness = async () => { const getVolume = async () => { return Promise.all([ - execute("pactl get-sink-volume 0 | grep 'Volume' | cut -d '/' -f 2"), + execute("pactl get-sink-volume @DEFAULT_SINK@ | grep 'Volume' | cut -d '/' -f 2"), execute("pactl get-sink-mute 0") ]).then(([volume, muted]) => { return `${muted.includes("no") ? "" : ""} ${volume.trim()}`;