summaryrefslogtreecommitdiff
path: root/.stumpwm.d/keybindings.lisp
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-01-28 22:07:36 +0200
committerThanos Apollo <[email protected]>2024-01-28 22:07:36 +0200
commit404fbeacc9c25be0969510aadb1c0df960445bb4 (patch)
tree95ad46010e01b73c76650a0083a448f7141e2b95 /.stumpwm.d/keybindings.lisp
parent44e32ad161d8870b094809595d3f05b7c17c5ae9 (diff)
stumpwm: Update volume & split keybindings
Diffstat (limited to '.stumpwm.d/keybindings.lisp')
-rw-r--r--.stumpwm.d/keybindings.lisp11
1 files changed, 6 insertions, 5 deletions
diff --git a/.stumpwm.d/keybindings.lisp b/.stumpwm.d/keybindings.lisp
index a36430a..c5f4b9f 100644
--- a/.stumpwm.d/keybindings.lisp
+++ b/.stumpwm.d/keybindings.lisp
@@ -30,21 +30,22 @@
m))
(define-key *root-map* (kbd "C-x") *thanos-buffers-map*)
+(define-key *root-map* (kbd "s") "hsplit-and-focus")
+(define-key *root-map* (kbd "k") "delete-window-and-frame")
+(define-key *root-map* (kbd "S") "vsplit")
+(define-key *root-map* (kbd "b") "global-windowlist")
(define-key *root-map* (kbd "e") "exec emacsclient -c")
(define-key *root-map* (kbd "C-e") "exec emacs")
-;; Ssh somewhere
-(define-key *root-map* (kbd "C-S") "colon1 exec xterm -e ssh ")
-
;; Lock screen
(define-key *root-map* (kbd "C-l") "exec slock")
(define-key *top-map* (kbd "F11") "fullscreen")
;; Audio
-(define-key *top-map* (kbd "XF86AudioLowerVolume") "exec pamixer -d 5")
-(define-key *top-map* (kbd "XF86AudioRaiseVolume") "exec pamixer -i 5")
+(define-key *top-map* (kbd "XF86AudioLowerVolume") "exec amixer sset Master 5%-")
+(define-key *top-map* (kbd "XF86AudioRaiseVolume") "exec amixer sset Master 5%+")
;; x220 specific
(define-key *top-map* (kbd "F1") "exec brightnessctl --device='intel_backlight' set 5%-")