Browse Source

Add volume keyboard modifiers

master
Riyyi 7 years ago
parent
commit
bb3cdf0968
  1. 7
      .config/i3/config

7
.config/i3/config

@ -189,8 +189,11 @@ client.urgent $bg-color-urgent $bg-color-urgent $text-color #00FF00
# Keybindings # Keybindings
bindsym $mod+Mod1+l exec $HOME/.config/i3/scripts/lock.sh bindsym $mod+Mod1+l exec $HOME/.config/i3/scripts/lock.sh
bindsym $mod+F3 exec xbacklight -inc 10 # increase screen brightness bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% # Increase sound volume; Pulse Audio
bindsym $mod+F2 exec xbacklight -dec 10 # increase screen brightness bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% # Decrease sound volume
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # Mute sound
bindsym $mod+F3 exec xbacklight -inc 10 # Increase screen brightness
bindsym $mod+F2 exec xbacklight -dec 10 # Decrease screen brightness
# Window appearance # Window appearance
smart_gaps on smart_gaps on

Loading…
Cancel
Save