diff options
author | ThanosApollo <[email protected]> | 2023-03-20 18:06:15 +0200 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2023-03-20 18:06:15 +0200 |
commit | 042fb78782afc76a66bf75197907ea2d367d5966 (patch) | |
tree | edf1d5e414bad63aab708189936082912635a705 /.config/stumpwm | |
parent | a51e3f48e25bff387ded6d63cd68f043bd9ee9a6 (diff) |
stumpw: for keys add fullscreen and select-window-by-number 0 with `
Diffstat (limited to '.config/stumpwm')
-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 d2d0188..916150e 100644 --- a/.config/stumpwm/keybindings.lisp +++ b/.config/stumpwm/keybindings.lisp @@ -15,7 +15,13 @@ (let ((cmd (read-one-line (current-screen) ": " :initial-input initial))) (when cmd (eval-command cmd t)))) - + + + +(define-key *root-map* (kbd "`") "select-window-by-number 0") + +(define-key *root-map* (kbd "C-f") "fullscreen") + ;; Run rofi (define-key *root-map* (kbd "C-r") "exec rofi -show drun") |