From 1cab0eb5e7627ef0f2971b1486396f59743a7769 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Mon, 3 Jun 2024 14:13:53 +0100 Subject: [PATCH] Fix color typo --- suckless/dwm/config.def.h | 4 ++-- suckless/dwm/config.h | 13 ++++--------- suckless/st/config.h | 13 +++++++++++++ 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/suckless/dwm/config.def.h b/suckless/dwm/config.def.h index ce603c89..abb5b226 100644 --- a/suckless/dwm/config.def.h +++ b/suckless/dwm/config.def.h @@ -15,8 +15,8 @@ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "JetBrainsMono NF:size=20" }; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { "ebdbb2", "282828", "1d2021" }, - [SchemeSel] = { "282828", "ebdbb2", "ebdbb2" }, + [SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" }, + [SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" }, }; /* tagging */ diff --git a/suckless/dwm/config.h b/suckless/dwm/config.h index 089ab451..abb5b226 100644 --- a/suckless/dwm/config.h +++ b/suckless/dwm/config.h @@ -3,25 +3,20 @@ #include "exitdwm.c" /* appearance */ -static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int borderpx = 4; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ -static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */ +static const unsigned int systrayonleft = 1; /* 0: systray in the right corner, >0: systray on left of status text */ static const unsigned int systrayspacing = 2; /* systray spacing */ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ static const int showsystray = 1; /* 0 means no systray */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "JetBrainsMono NF:size=20" }; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" }, + [SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" }, }; /* tagging */ diff --git a/suckless/st/config.h b/suckless/st/config.h index 677758a9..a6556240 100644 --- a/suckless/st/config.h +++ b/suckless/st/config.h @@ -147,6 +147,12 @@ static unsigned int defaultrcs = 257; */ static unsigned int cursorshape = 2; +/* + * Whether to use pixel geometry or cell geometry + */ + +static Geometry geometry = CellGeometry; + /* * Default columns and rows numbers */ @@ -154,6 +160,13 @@ static unsigned int cursorshape = 2; static unsigned int cols = 80; static unsigned int rows = 24; +/* + * Default width and height (including borders!) + */ + +static unsigned int width = 564; +static unsigned int height = 364; + /* * Default colour and shape of the mouse cursor */