-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.h
35 lines (26 loc) · 1.06 KB
/
options.h
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
/* This header file contains the default customization options for the diagonal
* lines drawn by diagonator. All of the options are available as command-line
* options.
*/
// Direction of the lines in degrees, counterclockwise from the bottom of the
// screen
static double DIAGONATOR_LINE_DIRECTION = 30;
// Width of the lines, in pixels
static int DIAGONATOR_LINE_WIDTH = 5;
// Spacing between the lines, in pixels
static double DIAGONATOR_LINE_SPACING = 50.0;
// Style of the lines (0 = LineSolid, 1 = LineOnOffDash, 2 = LineDoubleDash)
static int DIAGONATOR_LINE_STYLE = 0;
/* Configure the margins to make diagonator draw in a custom rectangular area
* instead of your entire screen. For example, you could configure
* DIAGONATOR_TOP_MARGIN if you don't want diagonator to draw over your status
* bar.
*/
// Top margin, in pixels
static int DIAGONATOR_TOP_MARGIN = 0;
// Bottom margin, in pixels
static int DIAGONATOR_BOTTOM_MARGIN = 0;
// Left margin, in pixels
static int DIAGONATOR_LEFT_MARGIN = 0;
// Top margin, in pixels
static int DIAGONATOR_RIGHT_MARGIN = 0;