diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2017-01-02T16·14+0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2017-01-02T16·14+0800 |
commit | 4c043471c5e2b3c45e94bd98a3a5b6f83283fc39 (patch) | |
tree | aff6efadcf3a58ea62d85d3a9747cae0dbd701a3 /exwm-workspace.el | |
parent | b11ac2e6dc0821a5b1c6079cf24771fde3aeb4d4 (diff) |
Prevent certain frame parameters from being saved/restored
* exwm-input.el (exwm-input--init): * exwm-randr.el (exwm-randr--init): * exwm-workspace.el (exwm-workspace--init): Add certain frame parameters into `frameset-filter-alist' to prevent them from being saved/restored which makes little sense and is problematic.
Diffstat (limited to 'exwm-workspace.el')
-rw-r--r-- | exwm-workspace.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/exwm-workspace.el b/exwm-workspace.el index 617ad3820877..9d5401e28bdd 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -1466,7 +1466,12 @@ applied to all subsequently created X frames." (add-hook 'delete-frame-functions #'exwm-workspace--remove-frame-as-workspace) ;; Switch to the first workspace - (exwm-workspace-switch 0 t)) + (exwm-workspace-switch 0 t) + ;; Prevent frame parameters introduced by this module from being + ;; saved/restored. + (dolist (i '(exwm-outer-id exwm-id exwm-container exwm-workspace + fullscreen exwm-selected-window exwm-urgency)) + (push (cons i :never) frameset-filter-alist))) (defun exwm-workspace--exit () "Exit the workspace module." |