-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow changing step for volume up/down #616
Comments
If we change this into being an adjustable amount, would it not also make sense to have just one command (e.g. This would also then be similar to the CLI option to change the volume. Thoughts @aome510? |
sounds good |
This change implements what was requested in aome510#616, but would require users to re-write their `keymap.toml`. BREAKING CHANGE: keymap.toml will have to be re-written
This change implements what was requested in aome510#616.
This change implements what was requested in aome510#616.
Sorry just checking this, but this makes it have a different format from all other commands. Maybe make offset implicit. e.g "VolumeChange -2" This also affects nix/home-manager configs... can't pass {{}} to command when the module expects strings.
|
No worries mate. I just checked and this does work with home manager: {
command = {
VolumeChange = {
offset = 2;
};
};
key_sequence = "0";
} The TOML output looks a bit different but works the same. Do keep in mind that this hasn't yet made it into a release, meaning if you want to use this currently, you will need to build from source. |
Allow to set a different step for volumeup/down keymaps instead of always using 5.
Maybe a config option, or an optional argument after the command (volumeup 2 instead of volumeup)
The text was updated successfully, but these errors were encountered: