1 ;;; --------------------------------------------------------------------------
2 ;;; CLFSWM - FullScreen Window Manager
4 ;;; --------------------------------------------------------------------------
5 ;;; Documentation: System loading functions
6 ;;; --------------------------------------------------------------------------
8 ;;; (C) 2005 Philippe Brochard <hocwp@free.fr>
10 ;;; This program is free software; you can redistribute it and/or modify
11 ;;; it under the terms of the GNU General Public License as published by
12 ;;; the Free Software Foundation; either version 3 of the License, or
13 ;;; (at your option) any later version.
15 ;;; This program is distributed in the hope that it will be useful,
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;;; GNU General Public License for more details.
20 ;;; You should have received a copy of the GNU General Public License
21 ;;; along with this program; if not, write to the Free Software
22 ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 ;;; --------------------------------------------------------------------------
26 (defparameter *base-dir
* (directory-namestring *load-truename
*))
30 (setf ext
:*gc-verbose
* nil
)
45 (load (make-pathname :host
(pathname-host *base-dir
*)
46 :device
(pathname-device *base-dir
*)
47 :directory
(append (pathname-directory *base-dir
*) (list "contrib"))
48 :name
"asdf" :type
"lisp"))
50 (push *base-dir
* asdf
:*central-registry
*)
52 ;;;; Uncomment the line above if you want to follow the
53 ;;;; handle event mecanism.
54 ;;(pushnew :event-debug *features*)
56 (asdf:oos
'asdf
:load-op
:clfswm
)
61 (main :read-conf-file-p t
))
64 ;;;;;; Uncomment lines above to save the default documentation.
66 ;; (main :read-conf-file-p nil))
70 ;;; For debuging: start another sever (for example: 'startx -- :1'), Xnest
71 ;;; or Zephyr and add the lines above in a dot-clfswmrc-debug file
72 ;;; mod-2 is the numlock key on some keyboards.
73 ;;(setf *default-modifiers* '(:mod-2))
75 ;;(defun my-add-escape ()
76 ;; (define-main-key ("Escape" :mod-2) 'exit-clfswm))
78 ;;(add-hook *binding-hook* 'my-add-escape)
80 ;;(clfswm:main :display ":1" :alternate-conf #P"/where/is/dot-clfswmrc-debug")