mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-05 02:41:10 +02:00
add st patch
This commit is contained in:
parent
13b3c631be
commit
1865801415
3 changed files with 190 additions and 21 deletions
43
config.h
43
config.h
|
@ -5,8 +5,8 @@
|
||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "mono:pixelsize=14:antialias=true:autohint=true";
|
static char *font = "Fira Code:style=Bold:pixelsize=30:antialias=true:autohint=true";
|
||||||
static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
|
static char *font2[] = { "思源黑体 CN HEAVY:STYLE=Heavy:pixelsize=28:antialias=true:autohint=true" };
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -111,29 +111,30 @@ unsigned int tabspaces = 8;
|
||||||
float alpha = 0.8;
|
float alpha = 0.8;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] ={
|
||||||
"#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
|
"#000000", /* black */
|
||||||
"#cc241d",
|
"#ff5555", /* red */
|
||||||
"#98971a",
|
"#50fa7b", /* green */
|
||||||
"#d79921",
|
"#f1fa8c", /* yellow */
|
||||||
"#458588",
|
"#bd93f9", /* blue */
|
||||||
"#b16286",
|
"#ff79c6", /* magenta */
|
||||||
"#689d6a",
|
"#8be9fd", /* cyan */
|
||||||
"#a89984",
|
"#bbbbbb", /* white */
|
||||||
"#928374",
|
/* 8 bright colors */
|
||||||
"#fb4934",
|
"#44475a", /* black */
|
||||||
"#b8bb26",
|
"#ff5555", /* red */
|
||||||
"#fabd2f",
|
"#50fa7b", /* green */
|
||||||
"#83a598",
|
"#f1fa8c", /* yellow */
|
||||||
"#d3869b",
|
"#bd93f9", /* blue */
|
||||||
"#8ec07c",
|
"#ff79c6", /* magenta */
|
||||||
"#ebdbb2",
|
"#8be9fd", /* cyan */
|
||||||
|
"#ffffff", /* white */
|
||||||
[255] = 0,
|
[255] = 0,
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"#add8e6", /* 256 -> cursor */
|
"#add8e6", /* 256 -> cursor */
|
||||||
"#555555", /* 257 -> rev cursor*/
|
"#555555", /* 257 -> rev cursor*/
|
||||||
"#282828", /* 258 -> bg */
|
"#282a36", /* 258 -> bg */
|
||||||
"#ebdbb2", /* 259 -> fg */
|
"#f8f8f2", /* 259 -> fg */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
84
patch/st-dracula-0.8.2.diff
Normal file
84
patch/st-dracula-0.8.2.diff
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
diff --git a/config.def.h b/config.def.h
|
||||||
|
index 877afab..6a1699f 100644
|
||||||
|
--- a/config.def.h
|
||||||
|
+++ b/config.def.h
|
||||||
|
@@ -84,44 +84,49 @@ static unsigned int tabspaces = 8;
|
||||||
|
|
||||||
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
|
static const char *colorname[] = {
|
||||||
|
- /* 8 normal colors */
|
||||||
|
- "black",
|
||||||
|
- "red3",
|
||||||
|
- "green3",
|
||||||
|
- "yellow3",
|
||||||
|
- "blue2",
|
||||||
|
- "magenta3",
|
||||||
|
- "cyan3",
|
||||||
|
- "gray90",
|
||||||
|
-
|
||||||
|
- /* 8 bright colors */
|
||||||
|
- "gray50",
|
||||||
|
- "red",
|
||||||
|
- "green",
|
||||||
|
- "yellow",
|
||||||
|
- "#5c5cff",
|
||||||
|
- "magenta",
|
||||||
|
- "cyan",
|
||||||
|
- "white",
|
||||||
|
-
|
||||||
|
- [255] = 0,
|
||||||
|
-
|
||||||
|
- /* more colors can be added after 255 to use with DefaultXX */
|
||||||
|
- "#cccccc",
|
||||||
|
- "#555555",
|
||||||
|
-};
|
||||||
|
|
||||||
|
+ /* 8 normal colors */
|
||||||
|
+ [0] = "#000000", /* black */
|
||||||
|
+ [1] = "#ff5555", /* red */
|
||||||
|
+ [2] = "#50fa7b", /* green */
|
||||||
|
+ [3] = "#f1fa8c", /* yellow */
|
||||||
|
+ [4] = "#bd93f9", /* blue */
|
||||||
|
+ [5] = "#ff79c6", /* magenta */
|
||||||
|
+ [6] = "#8be9fd", /* cyan */
|
||||||
|
+ [7] = "#bbbbbb", /* white */
|
||||||
|
+
|
||||||
|
+ /* 8 bright colors */
|
||||||
|
+ [8] = "#44475a", /* black */
|
||||||
|
+ [9] = "#ff5555", /* red */
|
||||||
|
+ [10] = "#50fa7b", /* green */
|
||||||
|
+ [11] = "#f1fa8c", /* yellow */
|
||||||
|
+ [12] = "#bd93f9", /* blue */
|
||||||
|
+ [13] = "#ff79c6", /* magenta */
|
||||||
|
+ [14] = "#8be9fd", /* cyan */
|
||||||
|
+ [15] = "#ffffff", /* white */
|
||||||
|
+
|
||||||
|
+ /* special colors */
|
||||||
|
+ [256] = "#282a36", /* background */
|
||||||
|
+ [257] = "#f8f8f2", /* foreground */
|
||||||
|
+};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default colors (colorname index)
|
||||||
|
- * foreground, background, cursor, reverse cursor
|
||||||
|
+ * foreground, background, cursor
|
||||||
|
*/
|
||||||
|
-unsigned int defaultfg = 7;
|
||||||
|
-unsigned int defaultbg = 0;
|
||||||
|
-static unsigned int defaultcs = 256;
|
||||||
|
+unsigned int defaultfg = 257;
|
||||||
|
+unsigned int defaultbg = 256;
|
||||||
|
+static unsigned int defaultcs = 257;
|
||||||
|
static unsigned int defaultrcs = 257;
|
||||||
|
|
||||||
|
/*
|
||||||
|
+ * Colors used, when the specific fg == defaultfg. So in reverse mode this
|
||||||
|
+ * will reverse too. Another logic would only make the simple feature too
|
||||||
|
+ * complex.
|
||||||
|
+ */
|
||||||
|
+unsigned int defaultitalic = 7;
|
||||||
|
+unsigned int defaultunderline = 7;
|
||||||
|
+/*
|
||||||
|
* Default shape of cursor
|
||||||
|
* 2: Block ("█")
|
||||||
|
* 4: Underline ("_")
|
84
st-dracula-0.8.2.diff
Normal file
84
st-dracula-0.8.2.diff
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
diff --git a/config.def.h b/config.def.h
|
||||||
|
index 877afab..6a1699f 100644
|
||||||
|
--- a/config.def.h
|
||||||
|
+++ b/config.def.h
|
||||||
|
@@ -84,44 +84,49 @@ static unsigned int tabspaces = 8;
|
||||||
|
|
||||||
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
|
static const char *colorname[] = {
|
||||||
|
- /* 8 normal colors */
|
||||||
|
- "black",
|
||||||
|
- "red3",
|
||||||
|
- "green3",
|
||||||
|
- "yellow3",
|
||||||
|
- "blue2",
|
||||||
|
- "magenta3",
|
||||||
|
- "cyan3",
|
||||||
|
- "gray90",
|
||||||
|
-
|
||||||
|
- /* 8 bright colors */
|
||||||
|
- "gray50",
|
||||||
|
- "red",
|
||||||
|
- "green",
|
||||||
|
- "yellow",
|
||||||
|
- "#5c5cff",
|
||||||
|
- "magenta",
|
||||||
|
- "cyan",
|
||||||
|
- "white",
|
||||||
|
-
|
||||||
|
- [255] = 0,
|
||||||
|
-
|
||||||
|
- /* more colors can be added after 255 to use with DefaultXX */
|
||||||
|
- "#cccccc",
|
||||||
|
- "#555555",
|
||||||
|
-};
|
||||||
|
|
||||||
|
+ /* 8 normal colors */
|
||||||
|
+ [0] = "#000000", /* black */
|
||||||
|
+ [1] = "#ff5555", /* red */
|
||||||
|
+ [2] = "#50fa7b", /* green */
|
||||||
|
+ [3] = "#f1fa8c", /* yellow */
|
||||||
|
+ [4] = "#bd93f9", /* blue */
|
||||||
|
+ [5] = "#ff79c6", /* magenta */
|
||||||
|
+ [6] = "#8be9fd", /* cyan */
|
||||||
|
+ [7] = "#bbbbbb", /* white */
|
||||||
|
+
|
||||||
|
+ /* 8 bright colors */
|
||||||
|
+ [8] = "#44475a", /* black */
|
||||||
|
+ [9] = "#ff5555", /* red */
|
||||||
|
+ [10] = "#50fa7b", /* green */
|
||||||
|
+ [11] = "#f1fa8c", /* yellow */
|
||||||
|
+ [12] = "#bd93f9", /* blue */
|
||||||
|
+ [13] = "#ff79c6", /* magenta */
|
||||||
|
+ [14] = "#8be9fd", /* cyan */
|
||||||
|
+ [15] = "#ffffff", /* white */
|
||||||
|
+
|
||||||
|
+ /* special colors */
|
||||||
|
+ [256] = "#282a36", /* background */
|
||||||
|
+ [257] = "#f8f8f2", /* foreground */
|
||||||
|
+};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default colors (colorname index)
|
||||||
|
- * foreground, background, cursor, reverse cursor
|
||||||
|
+ * foreground, background, cursor
|
||||||
|
*/
|
||||||
|
-unsigned int defaultfg = 7;
|
||||||
|
-unsigned int defaultbg = 0;
|
||||||
|
-static unsigned int defaultcs = 256;
|
||||||
|
+unsigned int defaultfg = 257;
|
||||||
|
+unsigned int defaultbg = 256;
|
||||||
|
+static unsigned int defaultcs = 257;
|
||||||
|
static unsigned int defaultrcs = 257;
|
||||||
|
|
||||||
|
/*
|
||||||
|
+ * Colors used, when the specific fg == defaultfg. So in reverse mode this
|
||||||
|
+ * will reverse too. Another logic would only make the simple feature too
|
||||||
|
+ * complex.
|
||||||
|
+ */
|
||||||
|
+unsigned int defaultitalic = 7;
|
||||||
|
+unsigned int defaultunderline = 7;
|
||||||
|
+/*
|
||||||
|
* Default shape of cursor
|
||||||
|
* 2: Block ("█")
|
||||||
|
* 4: Underline ("_")
|
Loading…
Add table
Reference in a new issue