From c7a6272a94873522289af6f7164c0773a1aa8838 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 16 Sep 2023 11:45:57 +0900 Subject: feat(home/gui): fix multimedia keys --- home/profiles/gui/config/sway.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'home/profiles/gui/config') 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 -- cgit 1.4.1