-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfig.tmpl
102 lines (86 loc) · 1.99 KB
/
Config.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* Config.tmpl
* included by Imakefile
*/
/*
* Directory where you install *.qvwmrc.
* LIBDIR is /usr/X11R6/lib/X11, etc.
* If you install them to your local directory, you should set
* QVWMDIR to /home/kourai/lib/qvwm, etc.
*/
QVWMDIR = $(LIBDIR)/qvwm
/*
* Directory where you install the images.
*/
IMGDIR = $(QVWMDIR)/images
/*
* Directory where you install the sounds.
*/
SNDDIR = $(QVWMDIR)/sounds
/*
* Directory where you install the binary.
* By default, BINDIR is /usr/X11R6/bin, etc.
* If you change this directory, define BINDIR.
*/
/*BINDIR = /home/kourai/bin*/
/*
* Directory where you install the manual.
* By default, MANDIR is /usr/X11R6/man/mann, etc.
* If you change this directory, define MANDIR.
*/
/*MANDIR = /home/kourai/man*/
/*
* Path for rm.
*/
PATH_RM = /bin/rm
/*
* Use locale on FreeBSD.
* To use locale properly on FreeBSD, you must define NEED_XPG4.
*/
#undef NEED_XPG4
/*
* Use shape extension.
* If you cannot use shape extension, change below to '#undef USE_SHAPE'.
*/
#define USE_SHAPE
/*
* Use screen saver function.
* If you do not want to use screen saver function, change below to
* '#undef USE_SS'.
* If you cannot use screen saver extension, change below to
* '#undef USE_SSEXT'.
*/
#define USE_SS
#define USE_SSEXT
/*
* Use Imlib.
* If you want to use Imlib, change below to '#define USE_IMLIB'.
*/
#undef USE_IMLIB
/*
* Use X session management protocol (XSMP).
* If you cannot use shape extension, change below to '#undef USE_XSMP'.
*/
#define USE_XSMP
/*
* Use ALSA for sound effects (Linux only).
* If you want to use ALSA, change below to '#define USE_ALSA'.
*/
#undef USE_ALSA
/*
* Use esd (EsounD) for sound effects.
* If you want to use esd, change below to '#define USE_ESD'.
*/
#undef USE_ESD
/*
* If your system doesn't have usleep(), undefine HAVE_USLEEP.
*/
#define HAVE_USLEEP
/*
* Debug flag.
*/
#undef DEBUG
/*
* If you doesn't allow sending commands to qvwm, undefine ALLOW_RMTCMD
*/
#define ALLOW_RMTCMD