https://github.com/sebbekarlsson/i3-volume-ctrl
Graphical volume controller for the i3 window manager
https://github.com/sebbekarlsson/i3-volume-ctrl
bash i3 i3-config i3wm volume volume-control zenity
Last synced: 10 months ago
JSON representation
Graphical volume controller for the i3 window manager
- Host: GitHub
- URL: https://github.com/sebbekarlsson/i3-volume-ctrl
- Owner: sebbekarlsson
- Created: 2017-04-14T15:01:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-17T08:34:03.000Z (about 6 years ago)
- Last Synced: 2025-01-30T18:01:47.536Z (12 months ago)
- Topics: bash, i3, i3-config, i3wm, volume, volume-control, zenity
- Language: Shell
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# i3-volume-ctrl
> Simple volume control for i3

## Requirements
- alsa-utils
- yad
## Installation
- Clone down this repository somewhere.
- Install `yad`
# arch-linux
sudo pacman -S yad
# debian / ubuntu
sudo apt-get install yad
- Install `alsa-utils`
# arch-linux
sudo pacman -S alsa-utils
# debian / ubuntu
sudo apt-get install alsa-utils
- Keybindings for i3, put this in you i3 config file:
bindsym $mod+F3 exec /volume-increase.sh
bindsym $mod+F2 exec /volume-decrease.sh
> `` is where you have cloned down this repository.
> You should now be able to `increase` the volume using i3 `function-key + f3`,
> and you should be able to `decrease` the volume using i3 `function-key + f2`.