| Hash | Commit message | Author | Date | Files | + | - |
1 | commit d9000e01978b192f498350c2c0920cfffc8fd387 (origin/dev) |
2 | Author: Connor Etherington <[email protected]> |
3 | Date: Tue Feb 8 16:36:43 2022 +0200 |
4 | |
5 | Update. |
6 | --- |
7 | config.h | 43 ++++++++++++++++++++++--------------------- |
8 | st | Bin 120984 -> 120984 bytes |
9 | x.o | Bin 88472 -> 88504 bytes |
10 | 3 files changed, 22 insertions(+), 21 deletions(-) |
11 | |
12 | diff --git a/config.h b/config.h |
13 | index dbbf7b1..1803591 100644 |
14 | --- a/config.h |
15 | +++ b/config.h |
16 | @@ -6,9 +6,9 @@ |
17 | * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html |
18 | */ |
19 | |
20 | -static char *font = "Mononoki Nerd Font:pixelsize=18:antialias=true:autohint=true"; |
21 | +//static char *font = "Mononoki Nerd Font:pixelsize=18:antialias=true:autohint=true"; |
22 | +static char *font = "mono:pixelsize=16:antialias=true:autohint=true"; |
23 | static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" }; |
24 | -//static char *font = "mono:pixelsize=12:antialias=true:autohint=true"; |
25 | |
26 | static int borderpx = 2; |
27 | |
28 | @@ -116,22 +116,22 @@ float alphaUnfocus; |
29 | |
30 | /* Terminal colors (16 first used in escape sequence) */ |
31 | static const char *colorname[] = { |
32 | - "#040303", |
33 | - "#E3B036", |
34 | - "#EEDC5E", |
35 | - "#B8118C", |
36 | - "#45A59A", |
37 | + "#000000", |
38 | + "#000000", |
39 | + "#130C0B", |
40 | + "#171515", |
41 | + "#250E1A", |
42 | + "#2B2A2A", |
43 | "#67D0A8", |
44 | - "#97E4B0", |
45 | - "#CBD9A4", |
46 | - "#666666", |
47 | - "#E3B036", |
48 | - "#EEDC5E", |
49 | - "#B8118C", |
50 | - "#45A59A", |
51 | - "#67D0A8", |
52 | - "#97E4B0", |
53 | - "#CBD9A4", |
54 | + "#F7110B", |
55 | + "#FC5814", |
56 | + "#DC4352", |
57 | + "#F4C52F", |
58 | + "#4951DA", |
59 | + "#F015A0", |
60 | + "#9E29FB", |
61 | + "#33D0F6", |
62 | + "#F111FF", |
63 | [255] = 0, |
64 | /* more colors can be added after 255 to use with DefaultXX */ |
65 | "#add8e6", /* 256 -> cursor */ |
66 | @@ -241,10 +241,11 @@ static MouseShortcut mshortcuts[] = { |
67 | }; |
68 | |
69 | /* Internal keyboard shortcuts. */ |
70 | -#define MODKEY Mod1Mask |
71 | -#define TERMMOD (Mod1Mask|ShiftMask) |
72 | -//#define MODKEY Mod4Mask |
73 | -//#define TERMMOD (Mod4Mask|ShiftMask) |
74 | +#define MODKEY Mod4Mask |
75 | +#define MOD1KEY Mod1Mask |
76 | +#define MOD2KEY Mod2Mask |
77 | +#define MOD3KEY Mod3Mask |
78 | +#define TERMMOD (Mod4Mask|ShiftMask) |
79 | |
80 | static char *openurlcmd[] = { "/bin/sh", "-c", "st-urlhandler -o", "externalpipe", NULL }; |
81 | static char *copyurlcmd[] = { "/bin/sh", "-c", "st-urlhandler -c", "externalpipe", NULL }; |
82 | diff --git a/st b/st |
83 | index 08b8963..e019859 100755 |
84 | Binary files a/st and b/st differ |
85 | diff --git a/x.o b/x.o |
86 | index 92c2208..7b993a9 100644 |
87 | Binary files a/x.o and b/x.o differ |