Merge branch 'master' of github.com:dylanaraps/pywal

This commit is contained in:
Dylan Araps 2019-01-04 22:22:07 +02:00
commit 0525c0a973
5 changed files with 42 additions and 5 deletions

View File

@ -44,11 +44,13 @@ def get_export_type(export_type):
"rofi": "colors-rofi.Xresources", "rofi": "colors-rofi.Xresources",
"scss": "colors.scss", "scss": "colors.scss",
"shell": "colors.sh", "shell": "colors.sh",
"speedcrunch": "colors-speedcrunch.json",
"sway": "colors-sway", "sway": "colors-sway",
"tty": "colors-tty.sh", "tty": "colors-tty.sh",
"waybar": "colors-waybar.css",
"xresources": "colors.Xresources", "xresources": "colors.Xresources",
"yaml": "colors.yml",
"xmonad": "colors.hs", "xmonad": "colors.hs",
"yaml": "colors.yml",
}.get(export_type, export_type) }.get(export_type, export_type)

View File

@ -48,11 +48,11 @@
text-color: @foreground; text-color: @foreground;
}} }}
inputbar {{ #inputbar {{
children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}} }}
textbox-prompt-colon {{ #textbox-prompt-colon {{
expand: false; expand: false;
str: ":"; str: ":";
margin: 0px 0.3em 0em 0em; margin: 0px 0.3em 0em 0em;

View File

@ -48,11 +48,11 @@
text-color: @foreground; text-color: @foreground;
}} }}
inputbar {{ #inputbar {{
children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}} }}
textbox-prompt-colon {{ #textbox-prompt-colon {{
expand: false; expand: false;
str: ":"; str: ":";
margin: 0px 0.3em 0em 0em; margin: 0px 0.3em 0em 0em;

View File

@ -0,0 +1,15 @@
{{
"cursor": "{cursor}",
"number": "{foreground}",
"parens": "{color13}",
"result": "{color12}",
"comment": "{color8}",
"matched": "{color4}",
"function": "{color1}",
"operator": "{color3}",
"variable": "{color2}",
"scrollbar": "{color3}",
"separator": "{color3}",
"background": "{background}",
"editorbackground": "{background}"
}}

View File

@ -0,0 +1,20 @@
@define-color foreground {foreground};
@define-color background {background};
@define-color cursor {cursor};
@define-color color0 {color0};
@define-color color1 {color1};
@define-color color2 {color2};
@define-color color3 {color3};
@define-color color4 {color4};
@define-color color5 {color5};
@define-color color6 {color6};
@define-color color7 {color7};
@define-color color8 {color8};
@define-color color9 {color9};
@define-color color10 {color10};
@define-color color11 {color11};
@define-color color12 {color12};
@define-color color13 {color13};
@define-color color14 {color14};
@define-color color15 {color15};