File: look_asm.lua

package info (click to toggle)
notion 3%2B2014010901-1
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 4,940 kB
  • ctags: 6,104
  • sloc: ansic: 46,870; sh: 2,008; makefile: 598; perl: 270
file content (175 lines) | stat: -rw-r--r-- 4,238 bytes parent folder | download | duplicates (3)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
-- Authors: Unknown
-- License: Unknown
-- Last Changed: Unknown

if not gr.select_engine("de") then return end

de.reset()

de.defstyle("*", {
    foreground_colour = "#ffffff",
    background_colour = "#708090",
    shadow_colour = "#405060",
    highlight_colour = "#708090",
    padding_colour= "#405060",

    padding_pixels = 0,
    highlight_pixels = 1,
    shadow_pixels = 0,
    spacing = 0,
    -- border_style = "elevated",
    border_style = "ridge",
    font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
    text_align = "center",
})

de.defstyle("frame", {
    based_on = "*",
    background_colour = "#040810",
    shadow_colour = "#405060",
    highlight_colour = "#708090",
    padding_colour= "#708090",
    shadow_pixels = 1,
    highlight_pixels = 1,
    spacing = 1,
    padding_pixels = 1,
})

de.defstyle("frame-tiled", {
    based_on = "frame",
    border_style = "inlaid",
    padding_pixels = 0,
    --highlight_pixels = 0,
    spacing = 0,
    shadow_pixels = 0,
    highlight_pixels = 1,
})

de.defstyle("frame-floating", {
    based_on = "frame",
    shadow_colour = "#405060",
    highlight_colour = "#708090",
    padding_pixels = 0,
    shadow_pixels = 1,
    highlight_pixels = 1,
    spacing = 0,
    border_style = "elevated",
    floatframe_tab_min_w = 10000,
    floatframe_bar_max_w_q = 1,
})

de.defstyle("tab", {
    based_on = "*",
    de.substyle("*-*-*-*-activity", {
        shadow_colour = "#506070",
        highlight_colour = "#506070",
        background_colour = "#993020",
        padding_colour= "#993020",
        foreground_colour = "#eeeeee",
    }),
    de.substyle("active-selected", {
        shadow_colour = "#708090",
        highlight_colour = "#708090",
        background_colour = "#607080",
        padding_colour= "#607080",
        foreground_colour = "#ffffff",
    }),
    de.substyle("active-unselected", {
        shadow_colour = "#607080",
        highlight_colour = "#607080",
        background_colour = "#405060",
        padding_colour= "#405060",
        foreground_colour = "#a0a0a0",
    }),
    de.substyle("inactive-selected", {
        shadow_colour = "#607080",
        highlight_colour = "#607080",
        background_colour = "#405060",
        padding_colour= "#405060",
        foreground_colour = "#c0c0c0",
    }),
    de.substyle("inactive-unselected", {
        shadow_colour = "#506070",
        highlight_colour = "#506070",
        background_colour = "#304050",
        padding_colour= "#304050",
        foreground_colour = "#a0a0a0",
    }),
    font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
    border_style = "ridge",
    padding_pixels = 0,
    shadow_pixels = 0,
    highlight_pixels = 1,
    spacing = 1,
    text_align = "center",
})

de.defstyle("tab-frame", {
    based_on = "tab",
    spacing = 0,
})

de.defstyle("tab-frame-tiled", {
    based_on = "tab-frame",
    spacing = 1,
})

de.defstyle("tab-menuentry", {
    based_on = "tab",
    text_align = "left",
    highlight_pixels = 0,
    shadow_pixels = 0,
    spacing = 1,
    padding_pixels = 0,
})

de.defstyle("tab-menuentry-big", {
    based_on = "tab-menuentry",
    font = "-*-helvetica-medium-r-normal-*-12-*-*-*-*-*-*-*",
    border_style = "inlaid",
    shadow_pixels = 0,
    highlight_pixels = 0,
    padding_pixels = 5,
    spacing = 1,
})

de.defstyle("input", {
    based_on = "*",
    background_colour = "#304050",
    padding_pixels = 1,
    highlight_pixels = 0,
    shadow_pixels = 0,
    border_style = "elevated",
    de.substyle("*-cursor", {
        background_colour = "#ffffff",
        foreground_colour = "#000000",
    }),
    de.substyle("*-selection", {
        background_colour = "#506070",
        foreground_colour = "#ffffff",
    }),
})

de.defstyle("input-menu", {
    based_on = "*",
    padding_colour = "#607080",
    de.substyle("active", {
        shadow_colour = "#304050",
        highlight_colour = "#708090",
        background_colour = "#506070",
        foreground_colour = "#ffffff",
    }),
})

de.defstyle("stdisp", {
    based_on = "*",
    shadow_pixels = 0,
    highlight_pixels = 0,
    padding_pixels = 1,
    spacing = 1,
    text_align = "center",
    background_colour = "#506070",
})

gr.refresh()