This repository has been archived on 2021-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
.stumpwm.d/placement.lisp

30 lines
609 B
Common Lisp
Raw Normal View History

;;; workspaces
(when *initializing*
(grename "term")
(gnewbg "emacs")
(gnewbg "browser")
(gnewbg "files")
(gnewbg "media")
2021-07-29 17:35:10 +00:00
(gnewbg "private")
(gnewbg "discord"))
(clear-window-placement-rules)
(define-frame-preference "browser"
(nil t t :class "Firefox"))
(define-frame-preference "emacs"
(nil t t :class "Emacs"))
(define-frame-preference "files"
2021-07-29 17:35:10 +00:00
(nil t t :class "Nemo"))
(define-frame-preference "media"
(nil t t :class "Gimp"))
(define-frame-preference "private"
2021-07-29 17:35:10 +00:00
(nil t t :class "Signal"))
(define-frame-preference "discord"
(nil t t :class "lightcord"))