diff options
author | ThanosApollo <[email protected]> | 2023-03-18 20:35:39 +0200 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2023-03-18 20:36:19 +0200 |
commit | 673cb2302b5b55515b93362c2cb96529acf6d58d (patch) | |
tree | 3d25cb139873dfa067e81d83ceb9435fce4b89b6 /.config/stumpwm/keybindings.lisp | |
parent | 274320132271b31b3e144479d0407ea3c4d15f8a (diff) |
Add keybindings for brightnessctl
Diffstat (limited to '.config/stumpwm/keybindings.lisp')
-rw-r--r-- | .config/stumpwm/keybindings.lisp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/stumpwm/keybindings.lisp b/.config/stumpwm/keybindings.lisp index d4ec2e5..63da275 100644 --- a/.config/stumpwm/keybindings.lisp +++ b/.config/stumpwm/keybindings.lisp @@ -30,6 +30,12 @@ (define-key *top-map* (kbd "XF86AudioLowerVolume") "exec amixer sset Master 5%-") (define-key *top-map* (kbd "XF86AudioRaiseVolume") "exec amixer sset Master 5%+") +;;Keyboard-light + +(define-key *top-map* (kbd "XF86Explorer") "exec brightnessctl --device='tpacpi::kbd_backlight' set +1") +(define-key *top-map* (kbd "XF86LaunchA") "exec brightnessctl --device='tpacpi::kbd_backlight' set 1-") +(define-key *top-map* (kbd "") "exec amixer sset Master 5%+") + ;;; Groups ;; Switch to group (define-key *top-map* (kbd "s-1") "gselect 1") @@ -50,4 +56,4 @@ ;; Focus (define-key *top-map* (kbd "s-b") "move-focus left") (define-key *top-map* (kbd "s-f") "move-focus right") -(define-key *top-map* (kbd "s-n") "move-focus down")
\ No newline at end of file +(define-key *top-map* (kbd "s-n") "move-focus down") |