mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
Add theme
This commit is contained in:
parent
f3b050df7f
commit
58a2941879
3 changed files with 54 additions and 2 deletions
|
@ -6,7 +6,7 @@ Simple Python i3 colors manager.<br />
|
|||
git clone https://gitlab.com/manzerbredes/i3-colors
|
||||
./i3-colors/src/i3-colors.py -h
|
||||
|
||||
**Notes:** Some of the themes come from [i3-style project](https://github.com/altdesktop/i3-style)
|
||||
**Notes:** Some of the themes come from [i3-style project](https://github.com/altdesktop/i3-style) and [j4-make-config](https://github.com/okraits/j4-make-config)
|
||||
|
||||
### Screenshots
|
||||
|
||||
|
|
5
TODO.org
5
TODO.org
|
@ -9,12 +9,15 @@
|
|||
- [ ] Improve yaml theme loader reliability
|
||||
- [X] Allow several metadata
|
||||
|
||||
- Theme applying algorithm [1/3]:
|
||||
- Theme applying algorithm [1/4]:
|
||||
- [ ] Improve efficiency
|
||||
- [ ] Bugs may appear here! Found them...
|
||||
- [ ] Assume that theme to apply is well formated (checked in YAML Theme Parser)
|
||||
- [X] If there is no "colors" field in "bar" section, we still need to apply theme
|
||||
|
||||
- Theme Extracttion [0/1]:
|
||||
- [ ] Handle variable usage
|
||||
|
||||
- General [1/2]:
|
||||
- [ ] Improve user API
|
||||
- [X] Allow -r option (restart i3)
|
||||
|
|
49
themes/breeze
Normal file
49
themes/breeze
Normal file
|
@ -0,0 +1,49 @@
|
|||
bar_colors:
|
||||
active_workspace:
|
||||
background: '#4b4f54'
|
||||
border: '#4b4f54'
|
||||
text: '#dfe0e3'
|
||||
background: '#464b4f'
|
||||
focused_workspace:
|
||||
background: '#3c82a4'
|
||||
border: '#3c82a4'
|
||||
text: '#eff0f1'
|
||||
inactive_workspace:
|
||||
background: '#4b4f54'
|
||||
border: '#4b4f54'
|
||||
text: '#dfe0e3'
|
||||
separator: '#bfc2c4'
|
||||
statusline: '#eff0f1'
|
||||
urgent_workspace:
|
||||
background: '#3daee9'
|
||||
border: '#3daee9'
|
||||
text: '#eff0f1'
|
||||
meta:
|
||||
author: okraits
|
||||
url: https://github.com/okraits/j4-make-config
|
||||
window_colors:
|
||||
focused:
|
||||
background: '#475057'
|
||||
border: '#475057'
|
||||
child_border: '#475057'
|
||||
indicator: '#bdc3c7'
|
||||
text: '#eff0f1'
|
||||
focused_inactive:
|
||||
background: '#7f8c8d'
|
||||
border: '#7f8c8d'
|
||||
child_border: '#7f8c8d'
|
||||
indicator: '#bdc3c7'
|
||||
text: '#eff0f1'
|
||||
unfocused:
|
||||
background: '#eff0f1'
|
||||
border: '#eff0f1'
|
||||
child_border: '#eff0f1'
|
||||
indicator: '#bdc3c7'
|
||||
text: '#bdc3c7'
|
||||
urgent:
|
||||
background: '#3daee9'
|
||||
border: '#3daee9'
|
||||
child_border: '#3daee9'
|
||||
indicator: '#bdc3c7'
|
||||
text: '#eff0f1'
|
||||
|
Loading…
Add table
Reference in a new issue