diff options
author | AChavali <aryadevchavali1@gmail.com> | 2020-02-18 15:44:36 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2020-02-18 15:44:36 +0000 |
commit | ab8d325b5001eb5ff94f80b6954f841acc468f30 (patch) | |
tree | d24cb4c1c6e4256ccf8a00c8f11c815f27821b2d /i3.conf | |
parent | 8c182d64ca6111361d6c3ea7797a4cbc798a05b0 (diff) | |
download | dotfiles-ab8d325b5001eb5ff94f80b6954f841acc468f30.tar.gz dotfiles-ab8d325b5001eb5ff94f80b6954f841acc468f30.tar.bz2 dotfiles-ab8d325b5001eb5ff94f80b6954f841acc468f30.zip |
+two more keybinds for volume manip
This is because I find volume manipulation on devices that don't have my
laptops volume buttons really annoying to use. So m and n are now the
default volume changers
Diffstat (limited to 'i3.conf')
-rw-r--r-- | i3.conf | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -10% & bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle && $refresh_i3status bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status +## m and n are the + and - volume buttons +bindsym $mod+m exec --no-startup-id pactl set-sink-volume 0 +10% && $refresh_i3status +bindsym $mod+n exec --no-startup-id pactl set-sink-volume 0 -10% && $refresh_i3status + # Use Mouse+$mod to drag floating windows to their wanted position floating_modifier $mod |