diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-05 22:30:36 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-05 22:30:36 +0100 |
| commit | fd96aac64eeb142e9ef47371359e5ffd50ad4c0c (patch) | |
| tree | 69bf14d9e2237d96372f0da6c758c3afbfc63311 /modules/home | |
| parent | c83ef65e1bf2ef3018d7aadb76629006be8a4b1f (diff) | |
fixed syntax error in audio controls
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index daa3f04..1c3e64a 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -64,15 +64,15 @@ in # === F-KEYS === # # Volume - "XF86AudioRaiseVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ +5%"; # Raise volume by 5% - "XF86AudioLowerVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ -5%"; # Lower volume by 5% + "XF86AudioRaiseVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"; # Raise volume by 5% + "XF86AudioLowerVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"; # Lower volume by 5% "XF86AudioMute" = "exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; # Toggle volume (audio) on/off "XF86AudioMicMute" = "exec wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"; # Toggle mic on/off # Brigtness - "XF86MonBrightnessUp" = "exec brightnessctl set +5%"; # Raise brightness by 5% - "XF86MonBrightnessDown" = "exec brightnessctl set -5%"; # Lower brightness by 5% + "XF86MonBrightnessUp" = "exec brightnessctl set 5%+"; # Raise brightness by 5% + "XF86MonBrightnessDown" = "exec brightnessctl set 5%-"; # Lower brightness by 5% # NOTE: Yes, the brightness can go to 0%, thus turning the screen off. }; |
