diff options
Diffstat (limited to 'home/profiles/gui/config')
-rw-r--r-- | home/profiles/gui/config/sway.nix | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/home/profiles/gui/config/sway.nix b/home/profiles/gui/config/sway.nix index dddf9d9..08ffa4f 100644 --- a/home/profiles/gui/config/sway.nix +++ b/home/profiles/gui/config/sway.nix @@ -141,18 +141,22 @@ in # bindsym $mod+Shift+a # Volume control - bindsym XF86AudioRaiseVolume exec ~/.local/bin/volume up - bindsym XF86AudioLowerVolume exec ~/.local/bin/volume down - bindsym XF86AudioMute exec ~/.local/bin/volume toggle + bindsym XF86AudioRaiseVolume exec amixer set Master 5%+ + bindsym XF86AudioLowerVolume exec amixer set Master 5%- + bindsym XF86AudioMute exec amixer set Master toggle + bindsym XF86AudioMicMute exec amixer set Capture toggle # HHKB - bindsym $mod+equal exec ~/.local/bin/volume up - bindsym $mod+minus exec ~/.local/bin/volume down - bindsym $mod+backslash exec ~/.local/bin/volume toggle + bindsym $mod+equal exec amixer set Master 5%+ + bindsym $mod+minus exec amixer set Master 5%- + bindsym $mod+backslash exec amixer set Master toggle # Brightness bindsym XF86MonBrightnessDown exec brightnessctl -q set 10%- bindsym XF86MonBrightnessUp exec brightnessctl -q set 10%+ + # Aeroplane mode + bindsym XF86WLAN exec ${pkgs.writeShellScript "aeroplane-mode" (import ../scripts/aeroplane-mode.nix)} + # Screenshot bindsym $mod+Print exec grimshot copy area bindsym Print exec grimshot copy active |