mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
Debug + add theme
This commit is contained in:
parent
0845aa2ce3
commit
6ba370ea54
2 changed files with 47 additions and 2 deletions
|
@ -119,8 +119,11 @@ class ThemeBuilder:
|
|||
for token in tokens:
|
||||
self.theme["bar_colors"][key][subkeys[0]]=self.get(token)
|
||||
subkeys.pop(0)
|
||||
elif re.match("(\s)*set",line):
|
||||
key,name,value=line.split()
|
||||
elif re.match("(\s)*set\s",line):
|
||||
lineList=line.split()
|
||||
key=lineList.pop(0)
|
||||
name=lineList.pop(0)
|
||||
value=" ".join(str(x) for x in lineList)
|
||||
self.vars.append(name)
|
||||
self.vars_values[name]=value
|
||||
|
||||
|
|
42
themes/old-school
Normal file
42
themes/old-school
Normal file
|
@ -0,0 +1,42 @@
|
|||
bar_colors:
|
||||
active_workspace:
|
||||
background: '#73c074'
|
||||
border: '#888cc3'
|
||||
text: '#3c0cf9'
|
||||
background: '#708b5f'
|
||||
focused_workspace:
|
||||
background: '#8d1560'
|
||||
border: '#66e032'
|
||||
text: '#10e344'
|
||||
inactive_workspace:
|
||||
background: '#fac4b2'
|
||||
border: '#62d183'
|
||||
text: '#1325b3'
|
||||
separator: '#1cdd60'
|
||||
statusline: '#ed4c7d'
|
||||
urgent_workspace:
|
||||
background: '#449789'
|
||||
border: '#53da79'
|
||||
text: '#62594e'
|
||||
meta:
|
||||
author: manzerbredes
|
||||
window_colors:
|
||||
focused:
|
||||
background: '#fdcb49'
|
||||
border: '#5bce18'
|
||||
child_border: '#16461c'
|
||||
indicator: '#95fd91'
|
||||
text: '#295ca9'
|
||||
unfocused:
|
||||
background: '#ca9868'
|
||||
border: '#510fc6'
|
||||
child_border: '#1c83b8'
|
||||
indicator: '#c3e749'
|
||||
text: '#fae16a'
|
||||
urgent:
|
||||
background: '#5a4034'
|
||||
border: '#23cc8c'
|
||||
child_border: '#c9589'
|
||||
indicator: '#d85ff1'
|
||||
text: '#dd19ad'
|
||||
|
Loading…
Add table
Reference in a new issue