From 83fc6ea98a9fd1ad3d4abac9789f35c5ee35a191 Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Thu, 11 Oct 2018 22:01:11 +0200 Subject: [PATCH] i3: Add Ctrl modifier to volume keys Ctrl+VolumeKeys now modify the volume by 10%. VolumeKeys now change the volume by 1% instead of 2%. Signed-off-by: Tobias Manske --- i3/conf/common/base | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/i3/conf/common/base b/i3/conf/common/base index 6753c20..3a92a1a 100644 --- a/i3/conf/common/base +++ b/i3/conf/common/base @@ -126,15 +126,18 @@ floating_modifier $mod bindsym F1 [instance="dropdown"] scratchpad show; [instance="dropdown"] move position center # Ranger Terminal - bindsym F2 exec "urxvt -name ranger -e ranger" + bindsym $mod+F2 exec "urxvt -name ranger -e ranger" # Urgent window bindsym $mod+x [urgent=latest] focus # MEDIA KEYS - bindsym XF86AudioRaiseVolume exec --no-startup-id amixer set Master 2%+ - bindsym XF86AudioLowerVolume exec --no-startup-id amixer set Master 2%- + bindsym XF86AudioRaiseVolume exec --no-startup-id amixer set Master 1%+ + bindsym XF86AudioLowerVolume exec --no-startup-id amixer set Master 1%- + bindsym Ctrl+XF86AudioRaiseVolume exec --no-startup-id amixer set Master 10%+ + bindsym Ctrl+XF86AudioLowerVolume exec --no-startup-id amixer set Master 10%- + bindsym XF86AudioMute exec --no-startup-id amixer set Master toggle bindsym XF86AudioPlay exec --no-startup-id mpc toggle bindsym XF86AudioNext exec --no-startup-id mpc next