src/clfswm-util.lisp (update-menus): List all directories and subdirectories in ...
[clfswm.git] / src / config.lisp
blob01ee9229eedeab859ffe0e5a2453d0cbcd9b61a1
1 ;;; --------------------------------------------------------------------------
2 ;;; CLFSWM - FullScreen Window Manager
3 ;;;
4 ;;; --------------------------------------------------------------------------
5 ;;; Documentation: Configuration file
6 ;;;
7 ;;; Change this file to your own needs or update some of this variables in
8 ;;; your ~/.clfswmrc
9 ;;; Some simple hack can be done in the code begining with the word CONFIG
10 ;;; (you can do a 'grep CONFIG *.lisp' to see what you can configure)
11 ;;; --------------------------------------------------------------------------
12 ;;;
13 ;;; (C) 2010 Philippe Brochard <hocwp@free.fr>
14 ;;;
15 ;;; This program is free software; you can redistribute it and/or modify
16 ;;; it under the terms of the GNU General Public License as published by
17 ;;; the Free Software Foundation; either version 3 of the License, or
18 ;;; (at your option) any later version.
19 ;;;
20 ;;; This program is distributed in the hope that it will be useful,
21 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;;; GNU General Public License for more details.
24 ;;;
25 ;;; You should have received a copy of the GNU General Public License
26 ;;; along with this program; if not, write to the Free Software
27 ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 ;;;
29 ;;; --------------------------------------------------------------------------
31 (in-package :clfswm)
34 ;;; CONFIG - Compress motion notify ?
35 ;; This variable may be useful to speed up some slow version of CLX.
36 ;; It is particulary useful with CLISP/MIT-CLX.
37 (setf *have-to-compress-notify* t)
41 ;;; CONFIG - Default modifiers
42 (defparameter *default-modifiers* '()
43 "Config(): Default modifiers list to append to explicit modifiers
44 Example: :mod-2 for num_lock, :lock for Caps_lock...")
49 ;;; CONFIG - Never managed window list
50 (defparameter *never-managed-window-list*
51 '((xlib:get-wm-class "ROX-Pinboard")
52 (xlib:get-wm-class "xvkbd")
53 (xlib:wm-name "clfswm-terminal"))
54 "Config(): CLFSWM will never manage windows of this type.
55 A list of (predicate-function-on-window expected-string)")
58 ;;; CONFIG - Screen size
59 (defun get-fullscreen-size ()
60 "Return the size of root child (values rx ry rw rh)
61 You can tweak this to what you want"
62 (values -2 -2 (+ (xlib:screen-width *screen*) 2) (+ (xlib:screen-height *screen*) 2)))
63 ;;(values -1 -1 (xlib:screen-width *screen*) (xlib:screen-height *screen*)))
64 ;; (values -1 -1 1024 768))
65 ;; (values 100 100 800 600))
68 (defparameter *corner-size* 3
69 "Config(Corner group): The size of the corner square")
72 ;;; CONFIG: Corner actions - See in clfswm-corner.lisp for
73 ;;; allowed functions
74 (defparameter *corner-main-mode-left-button*
75 '((:top-left open-menu)
76 (:top-right present-virtual-keyboard)
77 (:bottom-right present-windows)
78 (:bottom-left nil))
79 "Config(Corner group): Actions on corners in the main mode with the left mouse button")
81 (defparameter *corner-main-mode-middle-button*
82 '((:top-left help-on-clfswm)
83 (:top-right ask-close/kill-current-window)
84 (:bottom-right nil)
85 (:bottom-left nil))
86 "Config(Corner group): Actions on corners in the main mode with the middle mouse button")
88 (defparameter *corner-main-mode-right-button*
89 '((:top-left present-clfswm-terminal)
90 (:top-right ask-close/kill-current-window)
91 (:bottom-right present-all-windows)
92 (:bottom-left nil))
93 "Config(Corner group): Actions on corners in the main mode with the right mouse button")
95 (defparameter *corner-second-mode-left-button*
96 '((:top-left nil)
97 (:top-right nil)
98 (:bottom-right present-windows)
99 (:bottom-left nil))
100 "Config(Corner group): Actions on corners in the second mode with the left mouse button")
102 (defparameter *corner-second-mode-middle-button*
103 '((:top-left help-on-clfswm)
104 (:top-right nil)
105 (:bottom-right nil)
106 (:bottom-left nil))
107 "Config(Corner group): Actions on corners in the second mode with the middle mouse button")
109 (defparameter *corner-second-mode-right-button*
110 '((:top-left nil)
111 (:top-right nil)
112 (:bottom-right present-all-windows)
113 (:bottom-left nil))
114 "Config(Corner group): Actions on corners in the second mode with the right mouse button")
117 (defparameter *virtual-keyboard-cmd* "xvkbd"
118 "Config(Corner group): The command to display the virtual keybaord
119 Here is an ~/.Xresources example for xvkbd:
120 xvkbd.windowGeometry: 300x100-0-0
121 xvkbd*Font: 6x12
122 xvkbd.modalKeytop: true
123 xvkbd.customization: -french
124 xvkbd.keypad: false
125 And make it always on top")
127 (defparameter *clfswm-terminal-name* "clfswm-terminal"
128 "Config(Corner group): The clfswm terminal name")
129 ;;(defparameter *clfswm-terminal-cmd* (format nil "xterm -T ~A -e /bin/bash --noprofile --norc" *clfswm-terminal-name*)
130 (defparameter *clfswm-terminal-cmd* (format nil "xterm -T ~A" *clfswm-terminal-name*)
131 "Config(Corner group): The clfswm terminal command.
132 This command must set the window title to *clfswm-terminal-name*")
137 ;;; Hook definitions
139 ;;; A hook is a function, a symbol or a list of functions with a rest
140 ;;; arguments.
142 ;;; This hooks are set in clfswm.lisp, you can overwrite them or extend
143 ;;; them with a hook list.
145 ;;; See clfswm.lisp for hooks examples.
147 (defparameter *init-hook* 'default-init-hook
148 "Config(Hook group): Init hook. This hook is run just after the first root frame is created")
150 (defparameter *default-nw-hook* 'default-frame-nw-hook
151 "Config(Hook group): Default action to do on newly created windows")
156 ;;; CONFIG
157 (defparameter *create-frame-on-root* nil
158 "Config(): Create frame on root.
159 Set this variable to true if you want to allow to create a new frame
160 on the root window in the main mode with the mouse")
163 ;;; CONFIG: Main mode colors
164 (defparameter *color-selected* "Red"
165 "Config(Main mode group): Color of selected window")
166 (defparameter *color-unselected* "Blue"
167 "Config(Main mode group): Color of unselected color")
168 (defparameter *color-maybe-selected* "Yellow"
169 "Config(Main mode group): Color of maybe selected windows")
172 ;;; CONFIG: Frame colors
173 (defparameter *frame-background* "Black"
174 "Config(Frame colors group): Frame background")
175 (defparameter *frame-foreground* "Green"
176 "Config(Frame colors group): Frame foreground")
177 (defparameter *frame-foreground-root* "Red"
178 "Config(Frame colors group): Frame foreground when the frame is the root frame")
179 (defparameter *frame-foreground-hidden* "Darkgreen"
180 "Config(Frame colors group): Frame foreground for hidden windows")
182 ;;; CONFIG: Default window size
183 (defparameter *default-window-width* 400
184 "Config(): Default window width")
185 (defparameter *default-window-height* 300
186 "Config(): Default window height")
188 ;;; CONFIG: Second mode colors and fonts
189 (defparameter *sm-border-color* "Green"
190 "Config(Second mode group): Second mode window border color")
191 (defparameter *sm-background-color* "Black"
192 "Config(Second mode group): Second mode window background color")
193 (defparameter *sm-foreground-color* "Red"
194 "Config(Second mode group): Second mode window foreground color")
195 (defparameter *sm-font-string* *default-font-string*
196 "Config(Second mode group): Second mode window font string")
197 (defparameter *sm-width* 300
198 "Config(Second mode group): Second mode window width")
199 (defparameter *sm-height* 25
200 "Config(Second mode group): Second mode window height")
206 ;;; CONFIG - Identify key colors
207 (defparameter *identify-font-string* *default-font-string*
208 "Config(Identify key group): Identify window font string")
209 (defparameter *identify-background* "black"
210 "Config(Identify key group): Identify window background color")
211 (defparameter *identify-foreground* "green"
212 "Config(Identify key group): Identify window foreground color")
213 (defparameter *identify-border* "red"
214 "Config(Identify key group): Identify window border color")
216 ;;; CONFIG - Query string colors
217 (defparameter *query-font-string* *default-font-string*
218 "Config(Query string group): Query string window font string")
219 (defparameter *query-background* "black"
220 "Config(Query string group): Query string window background color")
221 (defparameter *query-foreground* "green"
222 "Config(Query string group): Query string window foreground color")
223 (defparameter *query-border* "red"
224 "Config(Query string group): Query string window border color")
227 ;;; CONFIG - Info mode
228 (defparameter *info-background* "black"
229 "Config(Info mode group): Info window background color")
230 (defparameter *info-foreground* "green"
231 "Config(Info mode group): Info window foreground color")
232 (defparameter *info-border* "red"
233 "Config(Info mode group): Info window border color")
234 (defparameter *info-line-cursor* "white"
235 "Config(Info mode group): Info window line cursor color color")
236 (defparameter *info-selected-background* "blue"
237 "Config(Info mode group): Info selected item background color")
238 (defparameter *info-font-string* *default-font-string*
239 "Config(Info mode group): Info window font string")
241 (defparameter *info-click-to-select* t
242 "Config(Info mode group): If true, click on info window select item. Otherwise, click to drag the menu")
244 ;;; CONFIG - Circulate string colors
245 (defparameter *circulate-font-string* *default-font-string*
246 "Config(Circulate mode group): Circulate string window font string")
247 (defparameter *circulate-background* "black"
248 "Config(Circulate mode group): Circulate string window background color")
249 (defparameter *circulate-foreground* "green"
250 "Config(Circulate mode group): Circulate string window foreground color")
251 (defparameter *circulate-border* "red"
252 "Config(Circulate mode group): Circulate string window border color")
253 (defparameter *circulate-width* 400
254 "Config(Circulate mode group): Circulate mode window width")
255 (defparameter *circulate-height* 15
256 "Config(Circulate mode group): Circulate mode window height")
259 (defparameter *circulate-text-limite* 30
260 "Config(Circulate mode group): Maximum text limite in the circulate window")
264 ;;; CONFIG - Show key binding colors
265 (defparameter *info-color-title* "Magenta"
266 "Config(Info mode group): Colored info title color")
267 (defparameter *info-color-underline* "Yellow"
268 "Config(Info mode group): Colored info underline color")
269 (defparameter *info-color-first* "Cyan"
270 "Config(Info mode group): Colored info first color")
271 (defparameter *info-color-second* "lightblue"
272 "Config(Info mode group): Colored info second color")
275 ;;; CONFIG - Menu colors
276 ;;; Set *info-foreground* to change the default menu foreground
277 (defparameter *menu-color-submenu* "Cyan"
278 "Config(Menu group): Submenu color in menu")
279 (defparameter *menu-color-comment* "Yellow"
280 "Config(Menu group): Comment color in menu")
281 (defparameter *menu-color-key* "Magenta"
282 "Config(Menu group): Key color in menu")
283 (defparameter *menu-color-menu-key* (->color #xFF9AFF)
284 "Config(Menu group): Menu key color in menu")