mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: add brightness and volume controls
This commit is contained in:
parent
1101ae5136
commit
ac49846fa6
2 changed files with 9 additions and 0 deletions
|
@ -68,6 +68,13 @@
|
|||
"$mod, Backspace, exec, wlogout" # show logout menu
|
||||
|
||||
"$mod, L, exec, hyprlock"
|
||||
|
||||
# System control
|
||||
",XF86MonBrightnessDown, exec, brightnessctl set 5%-"
|
||||
",XF86MonBrightnessUp, exec, brightnessctl set 5%+"
|
||||
",XF86AudioRaiseVolume, exec, pamixer -i 5"
|
||||
",XF86AudioLowerVolume, exec, pamixer -d 5"
|
||||
",XF86AudioMute, exec, pamixer -t"
|
||||
];
|
||||
bindm = [
|
||||
"$mod, mouse:272, movewindow"
|
||||
|
|
|
@ -29,6 +29,8 @@ with pkgs; [
|
|||
pavucontrol
|
||||
waypaper
|
||||
swaybg
|
||||
pamixer
|
||||
brightnessctl
|
||||
|
||||
# desktop apps
|
||||
dolphin
|
||||
|
|
Loading…
Reference in a new issue