From 68aca45b3c5583b02533e5d228b1414239a3bf3f Mon Sep 17 00:00:00 2001 From: TCCQ Date: Tue, 17 Jun 2025 09:26:37 -0700 Subject: remove messages from exwm monitor auto-assign --- emacs/init.el | 3 --- 1 file changed, 3 deletions(-) (limited to 'emacs') diff --git a/emacs/init.el b/emacs/init.el index c60c7b0..9e3c088 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -649,18 +649,15 @@ changes." (call-process-shell-command "xrandr --listmonitors -q" nil buf nil) (with-current-buffer buf (keep-lines "[^[:word:]]connected" (point-min) (point-max) nil) - ;; (message (buffer-substring (point-min) (point-max))) (let ((num-monitors (count-lines (point-min) (point-max))) (i 0)) (setq exwm-workspace-number num-monitors) (goto-char (point-min)) (while (< i num-monitors) - (message "iter") (move-beginning-of-line 1) (push-mark) (search-forward-regexp " ") (backward-char) - (message (buffer-substring (mark) (point))) (push (buffer-substring (mark) (point)) out-plist) (push i out-plist) (setq i (+ i 1)) -- cgit v1.2.3