* exwm-core.el (exwm--floating-mode-line-format, exwm--mode-line-format) (exwm-mode-map): * exwm-floating.el (exwm-floating-hide-mode-line) (exwm-floating-show-mode-line): * exwm-layout.el (exwm-layout-hide-mode-line, exwm-layout-show-mode-line) (exwm-layout-toggle-mode-line): Allow hide/show mode-line for all `exwm-mode' buffers with 'C-c M'. * exwm-config.el (exwm-config-default): Add simulation keys for 'C-d' and 'C-k'.
		
			
				
	
	
		
			101 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
;;; exwm-config.el --- Predefined configurations  -*- lexical-binding: t -*-
 | 
						||
 | 
						||
;; Copyright (C) 2015-2016 Free Software Foundation, Inc.
 | 
						||
 | 
						||
;; Author: Chris Feng <chris.w.feng@gmail.com>
 | 
						||
 | 
						||
;; This file is part of GNU Emacs.
 | 
						||
 | 
						||
;; GNU Emacs is free software: you can redistribute it and/or modify
 | 
						||
;; it under the terms of the GNU General Public License as published by
 | 
						||
;; the Free Software Foundation, either version 3 of the License, or
 | 
						||
;; (at your option) any later version.
 | 
						||
 | 
						||
;; GNU Emacs is distributed in the hope that it will be useful,
 | 
						||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						||
;; GNU General Public License for more details.
 | 
						||
 | 
						||
;; You should have received a copy of the GNU General Public License
 | 
						||
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 | 
						||
 | 
						||
;;; Commentary:
 | 
						||
 | 
						||
;; This module contains typical (yet minimal) configurations of EXWM.
 | 
						||
 | 
						||
;;; Code:
 | 
						||
 | 
						||
(require 'exwm)
 | 
						||
 | 
						||
(defun exwm-config-default ()
 | 
						||
  "Default configuration of EXWM."
 | 
						||
  ;; Make class name the buffer name
 | 
						||
  (add-hook 'exwm-update-class-hook
 | 
						||
            (lambda ()
 | 
						||
              (exwm-workspace-rename-buffer exwm-class-name)))
 | 
						||
  ;; 's-r': Reset
 | 
						||
  (exwm-input-set-key (kbd "s-r") #'exwm-reset)
 | 
						||
  ;; 's-w': Switch workspace
 | 
						||
  (exwm-input-set-key (kbd "s-w") #'exwm-workspace-switch)
 | 
						||
  ;; 's-N': Switch to certain workspace
 | 
						||
  (dotimes (i exwm-workspace-number)
 | 
						||
    (exwm-input-set-key (kbd (format "s-%d" i))
 | 
						||
                        `(lambda () (interactive) (exwm-workspace-switch ,i))))
 | 
						||
  ;; 's-&': Launch application
 | 
						||
  (exwm-input-set-key (kbd "s-&")
 | 
						||
                      (lambda (command)
 | 
						||
                        (interactive (list (read-shell-command "$ ")))
 | 
						||
                        (start-process-shell-command command nil command)))
 | 
						||
  ;; Line-editing shortcuts
 | 
						||
  (exwm-input-set-simulation-keys
 | 
						||
   '(([?\C-b] . left)
 | 
						||
     ([?\C-f] . right)
 | 
						||
     ([?\C-p] . up)
 | 
						||
     ([?\C-n] . down)
 | 
						||
     ([?\C-a] . home)
 | 
						||
     ([?\C-e] . end)
 | 
						||
     ([?\M-v] . prior)
 | 
						||
     ([?\C-v] . next)
 | 
						||
     ([?\C-d] . delete)
 | 
						||
     ([?\C-k] . (S-end delete))))
 | 
						||
  ;; Enable EXWM
 | 
						||
  (exwm-enable)
 | 
						||
  ;; Configure Ido
 | 
						||
  (exwm-config-ido)
 | 
						||
  ;; Other configurations
 | 
						||
  (exwm-config-misc))
 | 
						||
 | 
						||
(defun exwm-config--ido-buffer-window-other-frame (orig-fun buffer)
 | 
						||
  "Wrapper for `ido-buffer-window-other-frame' to exclude invisible windows."
 | 
						||
  (with-current-buffer buffer
 | 
						||
    (if (and (eq major-mode 'exwm-mode)
 | 
						||
             (or exwm--floating-frame
 | 
						||
                 (not exwm-layout-show-all-buffers)))
 | 
						||
        ;; `ido-mode' works well with `exwm-mode' buffers
 | 
						||
        (funcall orig-fun buffer)
 | 
						||
      ;; Other buffers should be selected within the same workspace
 | 
						||
      (get-buffer-window buffer exwm-workspace--current))))
 | 
						||
 | 
						||
(defun exwm-config--fix/ido-buffer-window-other-frame ()
 | 
						||
  "Fix `ido-buffer-window-other-frame'."
 | 
						||
  (advice-add 'ido-buffer-window-other-frame :around
 | 
						||
              #'exwm-config--ido-buffer-window-other-frame))
 | 
						||
 | 
						||
(defun exwm-config-ido ()
 | 
						||
  "Configure Ido to work with EXWM."
 | 
						||
  (ido-mode 1)
 | 
						||
  (add-hook 'exwm-init-hook #'exwm-config--fix/ido-buffer-window-other-frame))
 | 
						||
 | 
						||
(defun exwm-config-misc ()
 | 
						||
  "Other configurations."
 | 
						||
  ;; Make more room
 | 
						||
  (menu-bar-mode -1)
 | 
						||
  (tool-bar-mode -1)
 | 
						||
  (scroll-bar-mode -1)
 | 
						||
  (fringe-mode 1))
 | 
						||
 | 
						||
 | 
						||
 | 
						||
(provide 'exwm-config)
 | 
						||
 | 
						||
;; exwm-config.el ends here
 |