From 319f9a60e545ef0f00e2ef738c320e1f35d417bd Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 27 Dec 2017 08:11:44 +1100 Subject: template: Added st template --- pywal/templates/colors-st.h | 33 --------------------------------- pywal/templates/colors-wal-st.h | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 pywal/templates/colors-st.h create mode 100644 pywal/templates/colors-wal-st.h diff --git a/pywal/templates/colors-st.h b/pywal/templates/colors-st.h deleted file mode 100644 index 65ad6f0..0000000 --- a/pywal/templates/colors-st.h +++ /dev/null @@ -1,33 +0,0 @@ -const char *colorname[] = {{ - - /* 8 normal colors */ - [0] = "{color0}", /* black */ - [1] = "{color1}", /* red */ - [2] = "{color2}", /* green */ - [3] = "{color3}", /* yellow */ - [4] = "{color4}", /* blue */ - [5] = "{color5}", /* magenta */ - [6] = "{color6}", /* cyan */ - [7] = "{color7}", /* white */ - - /* 8 bright colors */ - [8] = "{color8}", /* black */ - [9] = "{color9}", /* red */ - [10] = "{color10}", /* green */ - [11] = "{color11}", /* yellow */ - [12] = "{color12}", /* blue */ - [13] = "{color13}", /* magenta */ - [14] = "{color14}", /* cyan */ - [15] = "{color15}", /* white */ - - /* special colors */ - [256] = "{background}", /* background */ - [257] = "{foreground}", /* foreground */ - [258] = "{cursor}", /* cursor */ -}}; - -/* Default colors (colorname index) - * foreground, background, cursor */ - unsigned int defaultbg = 256; - unsigned int defaultfg = 257; - unsigned int defaultcs = 258; diff --git a/pywal/templates/colors-wal-st.h b/pywal/templates/colors-wal-st.h new file mode 100644 index 0000000..65ad6f0 --- /dev/null +++ b/pywal/templates/colors-wal-st.h @@ -0,0 +1,33 @@ +const char *colorname[] = {{ + + /* 8 normal colors */ + [0] = "{color0}", /* black */ + [1] = "{color1}", /* red */ + [2] = "{color2}", /* green */ + [3] = "{color3}", /* yellow */ + [4] = "{color4}", /* blue */ + [5] = "{color5}", /* magenta */ + [6] = "{color6}", /* cyan */ + [7] = "{color7}", /* white */ + + /* 8 bright colors */ + [8] = "{color8}", /* black */ + [9] = "{color9}", /* red */ + [10] = "{color10}", /* green */ + [11] = "{color11}", /* yellow */ + [12] = "{color12}", /* blue */ + [13] = "{color13}", /* magenta */ + [14] = "{color14}", /* cyan */ + [15] = "{color15}", /* white */ + + /* special colors */ + [256] = "{background}", /* background */ + [257] = "{foreground}", /* foreground */ + [258] = "{cursor}", /* cursor */ +}}; + +/* Default colors (colorname index) + * foreground, background, cursor */ + unsigned int defaultbg = 256; + unsigned int defaultfg = 257; + unsigned int defaultcs = 258; -- cgit v1.2.3