https://github.com/medusalix/winmix
Control the volume of individual applications from the command line
https://github.com/medusalix/winmix
go golang golang-cli volume volume-control windows
Last synced: 3 months ago
JSON representation
Control the volume of individual applications from the command line
- Host: GitHub
- URL: https://github.com/medusalix/winmix
- Owner: medusalix
- License: apache-2.0
- Created: 2019-04-20T12:16:07.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T20:57:20.000Z (about 6 years ago)
- Last Synced: 2025-03-20T17:38:21.479Z (3 months ago)
- Topics: go, golang, golang-cli, volume, volume-control, windows
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 14
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winmix [](https://ci.appveyor.com/project/medusalix/winmix) [](https://github.com/medusalix/winmix/releases/latest)

winmix is a command-line utility that lets you **change the volume of individual applications** under *Windows*. It can be used to create **mouse macros** or **scripts**.
## Usage
There are a number of commands that can be passed to winmix. The following table contains the possible commands and their usage:
| Command | Description |
|--------------------------------|----------------------------------------------------------------------------------------------------------|
| get \ | Gets the volume of the specified process and prints it. |
| set \ \ | Sets the volume of the specified process (in the range of 0 to 100) and prints the set volume. |
| change \ \ | Changes the volume of the specified process (in the range of -100 to 100) and prints the changed volume. |**NOTE:** *The `process-name` is **case-sensitive***.
## Examples
There is a variety of different use cases for winmix, for example:
#### Windows Media Player
```
winmix set wmplayer.exe 50
```#### Google Chrome
```
winmix set chrome.exe 50
```#### Discord
```
winmix set Discord.exe 50
```## Building
You can download winmix via the following command:
```
go get github.com/medusalix/winmix
```A list of prebuilt binaries can be found [here](https://github.com/medusalix/winmix/releases).
## License
winmix is released under the [Apache 2.0 license](LICENSE).
```
Copyright (C) 2019 MedusalixLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```