ganmacs/aric

View on GitHub
scripts/down.js

Summary

Maintainability
A
1 hr
Test Coverage
function run(argv){
  var app = Application("iTunes");
  app.soundVolume = app.soundVolume() - (argv[0] * 1);
  return app.soundVolume();
}