CLFSWM Tips And Tricks
How to quickly open a new frame
To quickly open a new frame, you can use the 'add new frame in parent frame' bound to Second Mode+Control+A.
You can also use the 'open the next window in a new frame' function bound to Second Mode+Control+O keys by default.
The next openned window will create a new frame where it will go.
CLFSWM doesn't works with Numlock or Capslock ON
If you want to use CLFSWM with Numlock or Capslock ON, add this line in your .clfswmrc configuration file:
(with-numlock) (with-capslock)
I don't like the one pixel border on fullscreened windows
To remove the one pixel border on fullscreened applications, add this in your .clfswmrc confiduration file:
(defun get-fullscreen-size ()
"Return the size of root child (values rx ry rw rh)
You can tweak this to what you want"
(values (- (* *border-size* 2))
(- (* *border-size* 2))
(+ (xlib:screen-width *screen*) (* *border-size* 2))
(+ (xlib:screen-height *screen*) (* *border-size* 2))))
