mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 18:41:08 +02:00
update config
This commit is contained in:
parent
3e8a3b51bf
commit
f88b886c92
1 changed files with 46 additions and 20 deletions
64
config.h
64
config.h
|
@ -5,8 +5,21 @@
|
||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
|
<<<<<<< HEAD
|
||||||
static char *font = "mono:pixelsize=12:antialias=true:autohint=true";
|
static char *font = "mono:pixelsize=12:antialias=true:autohint=true";
|
||||||
static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
|
static char *font2[] = { "JoyPixels:pixelsize=10:antialias=true:autohint=true" };
|
||||||
|
=======
|
||||||
|
static char *font = "Droid Sans Mono Dotted for Powerline:pixelsize=18:antialias=true:autohint=true";
|
||||||
|
/* Spare fonts */
|
||||||
|
static char *font2[] = {
|
||||||
|
"Droid Sans Mono Dotted for Powerline:pixelsize=18:antialias=true:autohint=true", // default
|
||||||
|
"Ubuntu Mono derivative Powerline:pixelsize=18:antialias=true:autohint=true", // just a test
|
||||||
|
"Hack Nerd Font:pixelsize=18:antialias=true:autohint=true", // Powerline
|
||||||
|
"IPAGothic:pixelsize=18:antialias=true:autohint=true", // Japanese
|
||||||
|
"Symbola:pixelsize=18:antialias=true:autohint=true" // Unicode
|
||||||
|
};
|
||||||
|
|
||||||
|
>>>>>>> ccfd2ad (update config)
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -88,6 +101,7 @@ static int bellvolume = 0;
|
||||||
|
|
||||||
/* default TERM value */
|
/* default TERM value */
|
||||||
char *termname = "st-256color";
|
char *termname = "st-256color";
|
||||||
|
//char *termname = "xterm-256color";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* spaces per tab
|
* spaces per tab
|
||||||
|
@ -107,34 +121,46 @@ char *termname = "st-256color";
|
||||||
unsigned int tabspaces = 8;
|
unsigned int tabspaces = 8;
|
||||||
|
|
||||||
/* bg opacity */
|
/* bg opacity */
|
||||||
|
<<<<<<< HEAD
|
||||||
float alpha = 0.8;
|
float alpha = 0.8;
|
||||||
float alphaOffset = 0.0;
|
float alphaOffset = 0.0;
|
||||||
float alphaUnfocus;
|
float alphaUnfocus;
|
||||||
|
=======
|
||||||
|
float alpha = 0.88;
|
||||||
|
>>>>>>> ccfd2ad (update config)
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
"#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
|
/* hard contrast: #000000 / soft contrast: #32302f */
|
||||||
"#cc241d",
|
|
||||||
"#98971a",
|
/* 8 normal colors */
|
||||||
"#d79921",
|
|
||||||
"#458588",
|
"#000000", /* black */
|
||||||
"#b16286",
|
"#FF5555", /* red */
|
||||||
"#689d6a",
|
"#50FA7B", /* green */
|
||||||
"#a89984",
|
"#f4bf75", /* yellow */
|
||||||
"#928374",
|
"#bd93f9", /* blue */
|
||||||
"#fb4934",
|
"#FF79C6", /* magenta */
|
||||||
"#b8bb26",
|
"#8BE9FD", /* cyan */
|
||||||
"#fabd2f",
|
"#BFBFBF", /* white */
|
||||||
"#83a598",
|
|
||||||
"#d3869b",
|
/* 8 bright colors */
|
||||||
"#8ec07c",
|
|
||||||
"#ebdbb2",
|
"#4D4D4D", /* black */
|
||||||
|
"#FF6E67", /* red */
|
||||||
|
"#5AF78E", /* green */
|
||||||
|
"#F4F99D", /* yellow */
|
||||||
|
"#CAA9FA", /* blue */
|
||||||
|
"#FF92D9", /* magenta */
|
||||||
|
"#9AEDFE", /* cyan */
|
||||||
|
"#E6E6E6", /* white */
|
||||||
|
|
||||||
[255] = 0,
|
[255] = 0,
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"#add8e6", /* 256 -> cursor */
|
"#add8e6", /* 256 -> cursor */
|
||||||
"#555555", /* 257 -> rev cursor*/
|
"#555555", /* 257 -> rev cursor*/
|
||||||
"#282828", /* 258 -> bg */
|
"#000000", /* 258 -> bg */
|
||||||
"#ebdbb2", /* 259 -> fg */
|
"#F8F8F2", /* 259 -> fg */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue