https://github.com/liamg/golume
https://github.com/liamg/golume
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/liamg/golume
- Owner: liamg
- Created: 2018-11-15T10:20:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-15T10:40:42.000Z (about 7 years ago)
- Last Synced: 2025-02-07T12:49:03.747Z (11 months ago)
- Language: Go
- Size: 1.11 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golume
A tiny wrapper for addressing the active pulse audio output, hacked together for nicer i3 key mappings when switching between laptop speakers/headphones.
## Install
```
sudo make install
```
## Usage
```
--change-volume int
Change the volume by a given percent (negative to decrease volume) on all outputs
--toggle-mute
Toggle mute on all outputs
```
## Example i3 config
```
bindsym XF86AudioRaiseVolume exec --no-startup-id golume --change-volume 5 # increase sound volume
bindsym XF86AudioLowerVolume exec --no-startup-id golume --change-volume -5 # decrease sound volume
bindsym XF86AudioMute exec --no-startup-id golume --toggle-mute # toggle mute sound
```