From cb6bf8ed83093055d4866e1198b9f5d15e7d654d Mon Sep 17 00:00:00 2001 From: ProsperousPotato Date: Sun, 30 Mar 2025 14:41:33 +0100 Subject: initial commit --- boxdraw.o | Bin 7624 -> 0 bytes config.h | 23 +++++++++++++---------- hb.o | Bin 4696 -> 0 bytes st | Bin 124704 -> 0 bytes st.o | Bin 83664 -> 0 bytes x.o | Bin 89272 -> 0 bytes 6 files changed, 13 insertions(+), 10 deletions(-) delete mode 100644 boxdraw.o delete mode 100644 hb.o delete mode 100644 st delete mode 100644 st.o delete mode 100644 x.o diff --git a/boxdraw.o b/boxdraw.o deleted file mode 100644 index b36def8..0000000 Binary files a/boxdraw.o and /dev/null differ diff --git a/config.h b/config.h index abe3660..a989534 100644 --- a/config.h +++ b/config.h @@ -2,11 +2,14 @@ /* * appearance +static char *font = "BigBlueTerm437NerdFontMono-Regular:pixelsize=12:autohint=true"; +static char *font2[] = { "BigBlueTerm437NerdFontMono-Regular:pixelsize=12:autohint=true" }; * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "cozette:pixelsize=12:antialias=true:autohint=true"; -static char *font2[] = { "cozette:pixelsize=12:antialias=true:autohint=true" }; + +static char *font = "BigBlueTerm437NerdFontMono-Regular:pixelsize=12:autohint=true"; +static char *font2[] = { "BigBlueTerm437NerdFontMono-Regular:pixelsize=12:autohint=true" }; static int borderpx = 0; int disablebold = 1; @@ -17,10 +20,10 @@ int disableroman = 1; * 1: program passed with -e * 2: scroll and/or utmp * 3: SHELL environment variable - * ffffffue of shell in /etc/passwd + * 4: value of shell in /etc/passwd * 5: value of shell in config.h */ -static char *shell = "/bin/sh"; +static char *shell = "/bin/zsh"; char *utmp = NULL; /* scroll program: to enable use a string like "scroll" */ char *scroll = NULL; @@ -64,7 +67,7 @@ static double maxlatency = 33; * blinking timeout (set to 0 to disable blinking) for the terminal blinking * attribute. */ -static unsigned int blinktimeout = 800; +static unsigned int blinktimeout = 1; /* * thickness of underline and bar cursors @@ -110,7 +113,7 @@ char *termname = "st-256color"; unsigned int tabspaces = 8; /* bg opacity */ -float alpha = 0.6; +float alpha = 0.8; float alphaOffset = 0; float alphaUnfocus = 0; @@ -164,8 +167,8 @@ static unsigned int cursorshape = 2; * Default columns and rows numbers */ -static unsigned int cols = 200; -static unsigned int rows = 55; +static unsigned int cols = 130; +static unsigned int rows = 41; /* * Default colour and shape of the mouse cursor @@ -275,8 +278,8 @@ static Shortcut shortcuts[] = { { MODKEY, XK_Down, kscrolldown, {.i = 1} }, { MODKEY, XK_u, kscrollup, {.i = -1} }, { MODKEY, XK_d, kscrolldown, {.i = -1} }, - { MODKEY, XK_s, changealpha, {.f = -0.05} }, - { MODKEY, XK_a, changealpha, {.f = +0.05} }, + { MODKEY, XK_a, changealpha, {.f = -0.05} }, + { MODKEY, XK_s, changealpha, {.f = +0.05} }, { TERMMOD, XK_Up, zoom, {.f = +1} }, { TERMMOD, XK_Down, zoom, {.f = -1} }, { TERMMOD, XK_K, zoom, {.f = +1} }, diff --git a/hb.o b/hb.o deleted file mode 100644 index 7fab4da..0000000 Binary files a/hb.o and /dev/null differ diff --git a/st b/st deleted file mode 100644 index 578401a..0000000 Binary files a/st and /dev/null differ diff --git a/st.o b/st.o deleted file mode 100644 index 5f9b75c..0000000 Binary files a/st.o and /dev/null differ diff --git a/x.o b/x.o deleted file mode 100644 index 5446f9f..0000000 Binary files a/x.o and /dev/null differ -- cgit v1.2.3