| OLD | NEW |
| (Empty) |
| 1 #!/usr/bin/pulseaudio -nF | |
| 2 | |
| 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
| 4 # Use of this source code is governed by a BSD-style license that can be | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 # A PulseAudio script that sets the initial volume of the first sink to 70% | |
| 8 # of PA_NORM (generally 70% of max volume). | |
| 9 # | |
| 10 # TODO(ajwong): There should be one file per board that configures all | |
| 11 # devices, not just the first. | |
| 12 | |
| 13 .nofail | |
| 14 | |
| 15 set-sink-mute 0 false | |
| 16 set-sink-volume 0 45876 | |
| OLD | NEW |