linux, tomorrow-night

This commit is contained in:
Evan Burkey 2024-07-16 13:43:05 -07:00
parent d00e781f18
commit 12cd242e74
4 changed files with 47 additions and 23 deletions

View File

@ -1,3 +1,3 @@
# suck # suck
Personalized suckless software I use on my OpenBSD devices Personalized suckless software

View File

@ -5,7 +5,7 @@
* *
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/ */
static char *font = "Go Mono:size=10"; static char *font = "GoMono Nerd Font:size=11";
static int borderpx = 2; static int borderpx = 2;
/* /*
@ -94,26 +94,50 @@ char *termname = "st-256color";
unsigned int tabspaces = 8; unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
/* GRUVBOX */
//static const char *colorname[] = {
// /* 8 normal colors */
// [0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
// [1] = "#cc241d", /* red */
// [2] = "#98971a", /* green */
// [3] = "#d79921", /* yellow */
// [4] = "#458588", /* blue */
// [5] = "#b16286", /* magenta */
// [6] = "#689d6a", /* cyan */
// [7] = "#a89984", /* white */
//
// /* 8 bright colors */
// [8] = "#928374", /* black */
// [9] = "#fb4934", /* red */
// [10] = "#b8bb26", /* green */
// [11] = "#fabd2f", /* yellow */
// [12] = "#83a598", /* blue */
// [13] = "#d3869b", /* magenta */
// [14] = "#8ec07c", /* cyan */
// [15] = "#ebdbb2", /* white */
//};
static const char *colorname[] = { static const char *colorname[] = {
/* TOMORROW NIGHT */
/* 8 normal colors */ /* 8 normal colors */
[0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */ [0] = "#1d1f21", /* black */
[1] = "#cc241d", /* red */ [1] = "#cc6666", /* red */
[2] = "#98971a", /* green */ [2] = "#b5bd68", /* green */
[3] = "#d79921", /* yellow */ [3] = "#f0c674", /* yellow */
[4] = "#458588", /* blue */ [4] = "#81a2be", /* blue */
[5] = "#b16286", /* magenta */ [5] = "#b294bb", /* magenta */
[6] = "#689d6a", /* cyan */ [6] = "#8abeb7", /* cyan */
[7] = "#a89984", /* white */ [7] = "#c5c8c6", /* white */
/* 8 bright colors */ /* 8 bright colors */
[8] = "#928374", /* black */ [8] = "#969896", /* black */
[9] = "#fb4934", /* red */ [9] = "#cc6666", /* red */
[10] = "#b8bb26", /* green */ [10] = "#b5bd68", /* green */
[11] = "#fabd2f", /* yellow */ [11] = "#f0c674", /* yellow */
[12] = "#83a598", /* blue */ [12] = "#81a2be", /* blue */
[13] = "#d3869b", /* magenta */ [13] = "#b294bb", /* magenta */
[14] = "#8ec07c", /* cyan */ [14] = "#8abeb7", /* cyan */
[15] = "#ebdbb2", /* white */ [15] = "#ffffff", /* white */
}; };

View File

@ -26,11 +26,11 @@ STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
STLDFLAGS = $(LIBS) $(LDFLAGS) STLDFLAGS = $(LIBS) $(LDFLAGS)
# OpenBSD: # OpenBSD:
CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE #CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \ #LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
`$(PKG_CONFIG) --libs fontconfig` \ # `$(PKG_CONFIG) --libs fontconfig` \
`$(PKG_CONFIG) --libs freetype2` # `$(PKG_CONFIG) --libs freetype2`
MANPREFIX = ${PREFIX}/man #MANPREFIX = ${PREFIX}/man
# compiler and linker # compiler and linker
# CC = c99 # CC = c99

BIN
st/st

Binary file not shown.