30 lines
609 B
Common Lisp
30 lines
609 B
Common Lisp
;;; workspaces
|
|
(when *initializing*
|
|
(grename "term")
|
|
(gnewbg "emacs")
|
|
(gnewbg "browser")
|
|
(gnewbg "files")
|
|
(gnewbg "media")
|
|
(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"
|
|
(nil t t :class "Nemo"))
|
|
|
|
(define-frame-preference "media"
|
|
(nil t t :class "Gimp"))
|
|
|
|
(define-frame-preference "private"
|
|
(nil t t :class "Signal"))
|
|
|
|
(define-frame-preference "discord"
|
|
(nil t t :class "lightcord"))
|