From a5c3e484a160bfc60566e37a9d107e3c71ebae83 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 13 Apr 2020 15:09:46 -0700 Subject: Add stumpwm configuration --- stumpwm/.stumpwmrc | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 stumpwm/.stumpwmrc (limited to 'stumpwm') diff --git a/stumpwm/.stumpwmrc b/stumpwm/.stumpwmrc new file mode 100644 index 0000000..3e46748 --- /dev/null +++ b/stumpwm/.stumpwmrc @@ -0,0 +1,39 @@ +;; -*- mode: lisp; -*- + +(in-package :stumpwm-user) + +(ql:quickload "swank") + +(load-module "swm-gaps") + +(defvar *lock-screen-hook* nil + "Hook that gets run right before the screen gets locked.") + +(defvar *screen-unlocked-hook* nil + "Hook that gets run right after the screen is unlocked.") + +(defun run-stumpwm-hook-on-exit (process) + "Run `*screen-unlocked-hook*' if PROCESS' status is `:exited'." + (when (eq (sb-ext:process-status process) :exited) + (run-hook *screen-unlocked-hook*))) + +(defcommand lock-screen () () + "Lock the screen using i3lock. +Run `*lock-screen-hook*' before locking it and run `*screen-unlocked-hook*' +after it has been unlocked." + (run-hook *lock-screen-hook*) + (sb-ext:run-program + "/usr/bin/i3lock" '("-n" "-c" "000000") + :wait nil + :status-hook #'run-stumpwm-hook-on-exit)) + +(setf swm-gaps:*inner-gaps-size* 7) +(setf swm-gaps:*outer-gaps-size* 7) + +(set-prefix-key (kbd "C-z")) + +(define-key *top-map* (kbd "C-M-l") "lock-screen") + +(toggle-gaps) + +(swank:create-server :dont-close t) -- cgit v1.2.3-54-g00ecf