[st] config.def.h: preferences

This commit is contained in:
dogeystamp 2024-01-02 11:46:17 -05:00
parent 88c038030d
commit ac4eb5ef76

View File

@ -5,11 +5,9 @@
* *
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/ */
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; static char *font = "JetBrains Mono:pixelsize=15:antialias=true:autohint=true";
/* Spare fonts */
static char *font2[] = { static char *font2[] = {
/* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */ "Noto Emoji:pixelsize=12:antialias=true:autohint=true",
/* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */
}; };
static int borderpx = 2; static int borderpx = 2;
@ -100,29 +98,31 @@ char *termname = "st-256color";
unsigned int tabspaces = 8; unsigned int tabspaces = 8;
/* bg opacity */ /* bg opacity */
float alpha = 0.8; float alpha = 0.1;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* 8 normal colors */ /* 8 normal colors */
"black", "#000000", /* black */
"red3", "#bf616a", /* red */
"green3", "#a3be8c", /* green */
"yellow3", "#ebcb8b", /* yellow */
"blue2", "#81a1c1", /* blue */
"magenta3", "#b48ead", /* magenta */
"cyan3", "#88c0d0", /* cyan */
"gray90", "#e5e9f0", /* white */
/* 8 bright colors */ /* 8 bright colors */
"gray50", "#4c566a", /* black */
"red", "#bf616a", /* red */
"green", "#a3be8c", /* green */
"yellow", "#ebcb8b", /* yellow */
"#5c5cff", "#81a1c1", /* blue */
"magenta", "#b48ead", /* magenta */
"cyan", "#8fbcbb", /* cyan */
"white", "#eceff4", /* white */
[255] = 0, [255] = 0,