App-specific Volume Controls

Hi, new to BTT here. This looks amazing, I was wondering does it have iTunes volume control in one of the presets? I always airplay my music from iTunes and it would be nice to control the volume globally right from the Touch Bar and separate from the system volume. thanks!

I almost missed this! It does not have iTunes-specific volume control. This is a neat idea though, so I'll split this off into its own thread so I don't forget!

2 Likes

Fantastic! Thanks for the response

Has this been added by now (and adapted to Music.app)? I couldn't find it within BTT?

For now I use AppleScript for this, but it's not always reliable and presumably has a big overhead.

if application "Music" is running then
tell application "Music" to try
set the sound volume to output volume of (get volume settings)
on error
set the sound volume to sound volume + 6.5
end try
end if
end