-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.py
134 lines (123 loc) · 3 KB
/
themes.py
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
import enum
from qtile_extras.widget.decorations import PowerLineDecoration
# Decorators
powerlineSlash = {
"decorations": [
PowerLineDecoration(path='forward_slash')
]
}
powerlineBackSlash = {
"decorations": [
PowerLineDecoration(path='back_slash')
]
}
class Green_Leaves():
fg_offwhite = 'd1b297'
fg = 'f5f5f5'
bg = '11130E'
grey = '3e3e3e'
### COLORS ###
class Green():
light1 = '7f8266'
light2 = '6C6F57'
light3 = "565C44"
normal1 = "41492F"
normal2 = '2D341F'
dark1 = "181F0E"
dark2 = '111B07'
g = Green()
class Brown():
light1='795548'
light2='6d4d41'
light3='61443a'
normal1='49332b'
normal2='3d2b24'
dark1='241a16'
dark2='18110e'
dark3='0c0807'
class Popup():
bluetooth='5198ae'
power='ce3131'
restart='5198ae'
lock="41492F"
### MISC ###
border = {
'border_focus':Green.light2,
"border_normal":Green.dark1,
"border_width":2,
'single_border_width':0
}
gap = {
'margin':8,
'single_margin':0
}
separatorKwargs = {
'foreground':Brown.light3,
}
### LEFT SIDE ###
menuTextBoxKwargs = {
'background':None,
'fontsize':24,
'foreground':Green.light1,
'fmt':'',
}
quickexitKwargs = {
'background':None,
'default_text':'',
'countdown_format':'',
'font':"Noto Nerd Font",
'fontsize':18
}
groupboxKwargs = {
'active':fg_offwhite, #fg
'inactive':grey,
'highlight_method':'line',
'highlight_color':[bg, Green.normal2],
'this_current_screen_border':Green.light1,
'this_screen_border':Green.light1,
'urgent_alert_method':'text',
'urgent_text':'cc241d',
'background':None
}
windowKwargs = {
**powerlineBackSlash
}
### RIGHT SIDE ###
openWeatherKwargs = {
'background':Brown.dark2,
'format':'{icon} {temp:1.1f}°C',
**powerlineBackSlash,
}
memoryKwargs = {
'background':Brown.dark1,
'measure_mem':'G',
'format':'{MemUsed:.1f}{mm} / {MemTotal:.1f}{mm}',
**powerlineBackSlash,
}
checkUpdatesKwargs = {
'background':Brown.normal2,
'colour_have_updates':fg,
'colour_no_updates':fg,
'no_update_string':' 0',
'restart_indicator':'',
**powerlineBackSlash,
}
essentialsKwargs = {
'background':Green.normal1,
**powerlineBackSlash,
}
#### oh my god
hack = {
'background':Green.normal1,
**powerlineSlash
}
clockKwargs = {
'background':Green.light3,
'format':"%A, %H:%M",
**powerlineSlash,
}
layoutKwargs = {
'background':Green.light2,
'scale': 0.8,
'custom_icon_paths':["/home/saczky/.config/qtile/icons/layouts/green_leaves",],
}