-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlookcommon_clean.lua
More file actions
98 lines (80 loc) · 2.04 KB
/
Copy pathlookcommon_clean.lua
File metadata and controls
98 lines (80 loc) · 2.04 KB
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
-- Common settings for the "clean" styles
de.defstyle("frame", {
background_colour = "#000000",
de.substyle("quasiactive", {
-- Something detached from the frame is active
padding_colour = "#901010",
}),
de.substyle("userattr1", {
-- For user scripts
padding_colour = "#009010",
}),
padding_pixels = 1,
})
de.defstyle("frame-tiled", {
shadow_pixels = 0,
highlight_pixels = 0,
spacing = 1,
})
--de.defstyle("frame-tiled-alt", {
-- bar = "none",
--})
de.defstyle("frame-floating", {
--bar = "shaped",
padding_pixels = 0,
})
de.defstyle("frame-transient", {
--bar = "none",
padding_pixels = 0,
})
de.defstyle("actnotify", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#901010",
foreground_colour = "#eeeeee",
})
de.defstyle("tab", {
de.substyle("*-*-*-unselected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#901010",
foreground_colour = "#eeeeee",
}),
de.substyle("*-*-*-selected-activity", {
shadow_colour = "#c04040",
highlight_colour = "#c04040",
background_colour = "#b03030",
foreground_colour = "#ffffff",
}),
de.substyle("*-*-*-tabnumber", {
background_colour = "black",
foreground_colour = "green",
}),
})
de.defstyle("tab-frame", {
spacing = 1,
})
de.defstyle("tab-frame-floating", {
spacing = 0,
})
de.defstyle("tab-menuentry", {
text_align = "left",
})
de.defstyle("tab-menuentry-big", {
font = "-*-helvetica-medium-r-normal-*-17-*-*-*-*-*-*-*",
padding_pixels = 7,
})
de.defstyle("stdisp", {
shadow_pixels = 0,
highlight_pixels = 0,
text_align = "left",
background_colour = "#000000",
foreground_colour = "grey",
font="-misc-fixed-medium-r-*-*-13-*-*-*-*-60-*-*",
de.substyle("important", {
foreground_colour = "green",
}),
de.substyle("critical", {
foreground_colour = "red",
}),
})