Any way to change system volume?

Is there way to increment/decrement the volume of the operating system, similar to how headphones have an up and down button?

I wrote a plugin to do this: OpenVR-VolumeControl/Assets/Plugins/SystemVolumePlugin/Windows at master · Thynix/OpenVR-VolumeControl · GitHub

public AudioSource source;

void Start () {

source.volume = 0.5f; //or Whatever 

}