mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-21 11:56:05 -07:00
14 lines
316 B
Plaintext
14 lines
316 B
Plaintext
(in-package :stumpwm)
|
|
|
|
(run-shell-command "export GDK_CORE_DEVICE_EVENTS=1")
|
|
|
|
(defvar *app-keymap*
|
|
(let ((m (make-sparse-keymap)))
|
|
(define-key m (kbd "b") "exec firefox")
|
|
(define-key m (kbd "t") "exec alacritty")
|
|
m))
|
|
|
|
(define-key *root-map* (kbd "a") '*app-keymap*)
|
|
|
|
(setf *mouse-focus-policy* :click)
|