-
Notifications
You must be signed in to change notification settings - Fork 46
/
config.h.in
73 lines (58 loc) · 1.81 KB
/
config.h.in
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
#ifndef _BERRY_CONFIG_H_
#define _BERRY_CONFIG_H_
/* Define to the one symbol short name of this package. */
#define @pkg_uname@_NAME "@pkg_name@"
/* Define to the version of this package. */
#define @pkg_uname@_VERSION @pkg_version@
/* Define to the version string of this package. */
#define @pkg_uname@_VERSTRING "@pkg_verstr@"
/* Define to the address where bug reports for this package should be sent. */
#define @pkg_uname@_BUGREPORT "@pkg_bugreport@"
#define VERSION "@pkg_major@.@pkg_minor@.@pkg_build@"
#define __THIS_VERSION__ VERSION
#define __WINDOW_MANAGER_NAME__ @pkg_uname@_NAME
#define _DEFAULT_SOURCE 1
#define _BSD_SOURCE 1
#define _POSIX_C_SOURCE 2
/* CHANGE THIS TO USE A DIFFERENT FONT */
#define DEFAULT_FONT "Monospace 10"
/* DO NOT CHANGE ANYTHING BELOW THIS COMMENT */
#define WORKSPACE_NUMBER 10
#define BORDER_WIDTH 3
#define INTERNAL_BORDER_WIDTH 3
#define TITLE_HEIGHT 30
#define MOVE_STEP 40
#define RESIZE_STEP 40
#define PLACE_RES 10
#define TOP_GAP 30
#define BOT_GAP 0
#define BORDER_UNFOCUS_COLOR 0x20292d
#define BORDER_FOCUS_COLOR 0x20292d
#define INNER_UNFOCUS_COLOR 0x2c3539
#define INNER_FOCUS_COLOR 0xac8d6e
#define TEXT_FOCUS_COLOR "#ffffff"
#define TEXT_UNFOCUS_COLOR "#000000"
#define FOCUS_NEW true
#define FOCUS_MOTION true
#define EDGE_LOCK true
#define TITLE_CENTER true
#define SMART_PLACE true
#define DRAW_TEXT true
#define JSON_STATUS true
#define FULLSCREEN_REMOVE_DEC true
#define FULLSCREEN_MAX true
#define MANAGE_DOCK false
#define MANAGE_DIALOG true
#define MANAGE_TOOLBAR false
#define MANAGE_MENU true
#define MANAGE_SPLASH false
#define MANAGE_UTILITY true
#define DECORATE_NEW true
#define MOVE_BUTTON 1
#define MOVE_MASK Mod4Mask
#define RESIZE_BUTTON 1
#define RESIZE_MASK Mod1Mask
#define POINTER_INTERVAL 0
#define FOLLOW_POINTER false
#define WARP_POINTER false
#endif