diff options
author | Thanos Apollo <[email protected]> | 2023-09-22 21:40:41 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-22 21:40:41 +0300 |
commit | 895ae18c340e07e83c0f3a6390ef36a1d229ef5f (patch) | |
tree | 4113f9033acf32f40d4a17b5278d40d2c3528577 /.stumpwm.d | |
parent | 4fd01ce64247e1663ce15ab1585dbb10c8658d4d (diff) |
[stumpwm] Add productivity keybinding
Diffstat (limited to '.stumpwm.d')
-rw-r--r-- | .stumpwm.d/keybindings.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.stumpwm.d/keybindings.lisp b/.stumpwm.d/keybindings.lisp index 3bf5a2a..a1224ee 100644 --- a/.stumpwm.d/keybindings.lisp +++ b/.stumpwm.d/keybindings.lisp @@ -1,3 +1,4 @@ +(in-package :stumpwm) (defcommand colon1 (&optional (initial "")) (:rest) (let ((cmd (read-one-line (current-screen) ": " :initial-input initial))) @@ -76,3 +77,6 @@ (define-key *root-map* (kbd "M-n") "move-window down") (define-key *root-map* (kbd "s") "Duck") + +(load-module "productivity") +(define-key *top-map* (kbd "F7") "productivity-mode-toggle") |