322 lines
9.7 KiB
C
322 lines
9.7 KiB
C
/* See LICENSE file for copyright and license details. */
|
|
|
|
/*
|
|
* appearance
|
|
*
|
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
|
*/
|
|
static char *font = "FiraCode Nerd Font:pixelsize=14";
|
|
/* Spare fonts */
|
|
static char *font2[] = {
|
|
"Noto Color Emoji:pixelsize=14",
|
|
};
|
|
|
|
static int borderpx = 2;
|
|
|
|
/* modkey options: ControlMask, ShiftMask or XK_ANY_MOD */
|
|
static uint url_opener_modkey = XK_ANY_MOD;
|
|
static char *url_opener = "xdg-open";
|
|
|
|
/*
|
|
* What program is execed by st depends of these precedence rules:
|
|
* 1: program passed with -e
|
|
* 2: scroll and/or utmp
|
|
* 3: SHELL environment variable
|
|
* 4: value of shell in /etc/passwd
|
|
* 5: value of shell in config.h
|
|
*/
|
|
static char *shell = "/bin/sh";
|
|
char *utmp = NULL;
|
|
/* scroll program: to enable use a string like "scroll" */
|
|
char *scroll = NULL;
|
|
char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400";
|
|
|
|
/* identification sequence returned in DA and DECID */
|
|
char *vtiden = "\033[?12;4c";
|
|
|
|
/* Kerning / character bounding-box multipliers */
|
|
static float cwscale = 1.0;
|
|
static float chscale = 1.0;
|
|
|
|
/*
|
|
* word delimiter string
|
|
*
|
|
* More advanced example: L" `'\"()[]{}"
|
|
*/
|
|
wchar_t *worddelimiters = L" `'\"()[]{}=,";
|
|
|
|
/* selection timeouts (in milliseconds) */
|
|
static unsigned int doubleclicktimeout = 300;
|
|
static unsigned int tripleclicktimeout = 600;
|
|
|
|
/* alt screens */
|
|
int allowaltscreen = 1;
|
|
|
|
/* allow certain non-interactive (insecure) window operations such as:
|
|
setting the clipboard text */
|
|
int allowwindowops = 0;
|
|
|
|
/*
|
|
* draw latency range in ms - from new content/keypress/etc until drawing.
|
|
* within this range, st draws when content stops arriving (idle). mostly it's
|
|
* near minlatency, but it waits longer for slow updates to avoid partial draw.
|
|
* low minlatency will tear/flicker more, as it can "detect" idle too early.
|
|
*/
|
|
static double minlatency = 5;
|
|
static double maxlatency = 30;
|
|
|
|
/*
|
|
* Synchronized-Update timeout in ms
|
|
* https://gitlab.com/gnachman/iterm2/-/wikis/synchronized-updates-spec
|
|
*/
|
|
static uint su_timeout = 200;
|
|
|
|
/*
|
|
* blinking timeout (set to 0 to disable blinking) for the terminal blinking
|
|
* attribute.
|
|
*/
|
|
static unsigned int blinktimeout = 800;
|
|
|
|
/*
|
|
* thickness of underline and bar cursors
|
|
*/
|
|
static unsigned int cursorthickness = 2;
|
|
|
|
/*
|
|
* 1: render most of the lines/blocks characters without using the font for
|
|
* perfect alignment between cells (U2500 - U259F except dashes/diagonals).
|
|
* Bold affects lines thickness if boxdraw_bold is not 0. Italic is ignored.
|
|
* 0: disable (render all U25XX glyphs normally from the font).
|
|
*/
|
|
const int boxdraw = 1;
|
|
const int boxdraw_bold = 0;
|
|
|
|
/* braille (U28XX): 1: render as adjacent "pixels", 0: use font */
|
|
const int boxdraw_braille = 1;
|
|
|
|
/*
|
|
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
|
|
* it
|
|
*/
|
|
static int bellvolume = 0;
|
|
|
|
/* default TERM value */
|
|
char *termname = "st-256color";
|
|
|
|
/*
|
|
* spaces per tab
|
|
*
|
|
* When you are changing this value, don't forget to adapt the »it« value in
|
|
* the st.info and appropriately install the st.info in the environment where
|
|
* you use this st version.
|
|
*
|
|
* it#$tabspaces,
|
|
*
|
|
* Secondly make sure your kernel is not expanding tabs. When running `stty
|
|
* -a` »tab0« should appear. You can tell the terminal to not expand tabs by
|
|
* running following command:
|
|
*
|
|
* stty tabs
|
|
*/
|
|
unsigned int tabspaces = 8;
|
|
|
|
#define BLACK "#15161E"
|
|
#define RED "#f7768e"
|
|
#define GREEN "#9ece6a"
|
|
#define ORANGE "#e0af68"
|
|
#define BLUE "#7aa2f7"
|
|
#define MAGENTA "#bb9af7"
|
|
#define CYAN "#7dcfff"
|
|
#define LIGHT_GRAY "#a9b1d6"
|
|
#define GRAY "#414868"
|
|
#define WHITE "#c0caf5"
|
|
#define UNDEFINED "#ff0000"
|
|
|
|
/* Terminal colors (16 first used in escape sequence) */
|
|
static const char *colorname[] = {
|
|
/* 8 normal colors */
|
|
BLACK, RED, GREEN, ORANGE, BLUE, MAGENTA, CYAN, LIGHT_GRAY,
|
|
|
|
/* 8 bright colors */
|
|
GRAY, RED, GREEN, ORANGE, BLUE, MAGENTA, CYAN, WHITE,
|
|
|
|
[255] = 0,
|
|
|
|
/* more colors can be added after 255 to use with DefaultXX */
|
|
"#c0caf5", /* 256 -> default cursor colour */
|
|
"#1a1b26", /* 257 -> default inverted cursor colour */
|
|
"#c0caf5", /* 258 -> default foreground colour */
|
|
"#1a1b26", /* 259 -> default background colour */
|
|
"#c0caf5", /* 260 -> default selection foreground colour */
|
|
"#33467C", /* 261 -> default selection background colour */
|
|
};
|
|
|
|
/*
|
|
* Default colors (colorname index)
|
|
* foreground, background, cursor, reverse cursor
|
|
*/
|
|
unsigned int defaultcs = 256;
|
|
unsigned int defaultrcs = 257;
|
|
unsigned int defaultfg = 258;
|
|
unsigned int defaultbg = 259;
|
|
unsigned int selectionfg = 260;
|
|
unsigned int selectionbg = 261;
|
|
static int ignoreselfg = 259;
|
|
|
|
/*
|
|
* https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Functions-using-CSI-_-ordered-by-the-final-character-lparen-s-rparen:CSI-Ps-SP-q.1D81
|
|
* Default style of cursor
|
|
* 0: Blinking block
|
|
* 1: Blinking block (default)
|
|
* 2: Steady block ("â–ˆ")
|
|
* 3: Blinking underline
|
|
* 4: Steady underline ("_")
|
|
* 5: Blinking bar
|
|
* 6: Steady bar ("|")
|
|
* 7: Blinking st cursor
|
|
* 8: Steady st cursor
|
|
*/
|
|
static unsigned int cursorstyle = 1;
|
|
static Rune stcursor = 0x2603; /* snowman (U+2603) */
|
|
|
|
/*
|
|
* Default columns and rows numbers
|
|
*/
|
|
|
|
static unsigned int cols = 80;
|
|
static unsigned int rows = 24;
|
|
|
|
/*
|
|
* Default shape of the mouse cursor
|
|
*/
|
|
static char *mouseshape = "xterm";
|
|
|
|
/*
|
|
* Color used to display font attributes when fontconfig selected a font which
|
|
* doesn't match the ones requested.
|
|
*/
|
|
static unsigned int defaultattr = 11;
|
|
|
|
/*
|
|
* Force mouse select/shortcuts while mask is active (when MODE_MOUSE is set).
|
|
* Note that if you want to use ShiftMask with selmasks, set this to an other
|
|
* modifier, set to 0 to not use it.
|
|
*/
|
|
static uint forcemousemod = ShiftMask;
|
|
|
|
/*
|
|
* Internal mouse shortcuts.
|
|
* Beware that overloading Button1 will disable the selection.
|
|
*/
|
|
static MouseShortcut mshortcuts[] = {
|
|
/* mask button function argument release
|
|
screen */
|
|
{ ShiftMask, Button4, kscrollup, {.i = 1}, 0, S_PRI},
|
|
{ ShiftMask, Button5, kscrolldown, {.i = 1}, 0, S_PRI},
|
|
// { XK_ANY_MOD, Button2, clippaste, {.i = 0}, 1 },
|
|
// { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} },
|
|
// { ShiftMask, Button5, ttysend, {.s = "\033[6;2~"} },
|
|
// { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} },
|
|
// { XK_ANY_MOD, Button5, ttysend, {.s = "\005"} },
|
|
};
|
|
|
|
/* Internal keyboard shortcuts. */
|
|
#define MODKEY Mod1Mask
|
|
#define TERMMOD (ControlMask | ShiftMask)
|
|
|
|
static char *openurlcmd[] = {"/bin/sh", "-c",
|
|
"xurls | dmenu -l 10 -w $WINDOWID | xargs -r open",
|
|
"externalpipe", NULL};
|
|
|
|
static char *setbgcolorcmd[] = {"/bin/sh", "-c", "printf '\033]11;#008000\007'",
|
|
"externalpipein", NULL};
|
|
|
|
static Shortcut shortcuts[] = {
|
|
/* mask keysym function argument screen
|
|
*/
|
|
{ XK_ANY_MOD, XK_Break, sendbreak, {.i = 0}},
|
|
{ ControlMask, XK_Print, toggleprinter, {.i = 0}},
|
|
{ ShiftMask, XK_Print, printscreen, {.i = 0}},
|
|
{ XK_ANY_MOD, XK_Print, printsel, {.i = 0}},
|
|
{ TERMMOD, XK_Prior, zoom, {.f = +3}},
|
|
{ TERMMOD, XK_Next, zoom, {.f = -3}},
|
|
{ TERMMOD, XK_Home, zoomreset, {.f = 0}},
|
|
{ TERMMOD, XK_C, clipcopy, {.i = 0}},
|
|
{ TERMMOD, XK_V, clippaste, {.i = 0}},
|
|
{ TERMMOD, XK_Y, selpaste, {.i = 0}},
|
|
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0}},
|
|
{ TERMMOD, XK_Escape, keyboard_select, {0}},
|
|
{ TERMMOD, XK_K, kscrollup, {.i = 20}, S_PRI },
|
|
{ TERMMOD, XK_J, kscrolldown, {.i = 20}, S_PRI },
|
|
};
|
|
|
|
/*
|
|
* Special keys (change & recompile st.info accordingly)
|
|
*
|
|
* Mask value:
|
|
* * Use XK_ANY_MOD to match the key no matter modifiers state
|
|
* * Use XK_NO_MOD to match the key alone (no modifiers)
|
|
* appkey value:
|
|
* * 0: no value
|
|
* * > 0: keypad application mode enabled
|
|
* * = 2: term.numlock = 1
|
|
* * < 0: keypad application mode disabled
|
|
* appcursor value:
|
|
* * 0: no value
|
|
* * > 0: cursor application mode enabled
|
|
* * < 0: cursor application mode disabled
|
|
*
|
|
* Be careful with the order of the definitions because st searches in
|
|
* this table sequentially, so any XK_ANY_MOD must be in the last
|
|
* position for a key.
|
|
*/
|
|
|
|
/*
|
|
* State bits to ignore when matching key or button events. By default,
|
|
* numlock (Mod2Mask) and keyboard layout (XK_SWITCH_MOD) are ignored.
|
|
*/
|
|
static uint ignoremod = Mod2Mask | XK_SWITCH_MOD;
|
|
|
|
/*
|
|
* Selection types' masks.
|
|
* Use the same masks as usual.
|
|
* Button1Mask is always unset, to make masks match between ButtonPress.
|
|
* ButtonRelease and MotionNotify.
|
|
* If no match is found, regular selection is used.
|
|
*/
|
|
static uint selmasks[] = {
|
|
[SEL_RECTANGULAR] = Mod1Mask,
|
|
};
|
|
|
|
/*
|
|
* Printable characters in ASCII, used to estimate the advance width
|
|
* of single wide characters.
|
|
*/
|
|
static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?"
|
|
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
"`abcdefghijklmnopqrstuvwxyz{|}~";
|
|
|
|
/**
|
|
* Undercurl style. Set UNDERCURL_STYLE to one of the available styles.
|
|
*
|
|
* Curly: Dunno how to draw it *shrug*
|
|
* _ _ _ _
|
|
* ( ) ( ) ( ) ( )
|
|
* (_) (_) (_) (_)
|
|
*
|
|
* Spiky:
|
|
* /\ /\ /\ /\
|
|
* \/ \/ \/
|
|
*
|
|
* Capped:
|
|
* _ _ _
|
|
* / \ / \ / \
|
|
* \_/ \_/
|
|
*/
|
|
// Available styles
|
|
#define UNDERCURL_CURLY 0
|
|
#define UNDERCURL_SPIKY 1
|
|
#define UNDERCURL_CAPPED 2
|
|
// Active style
|
|
#define UNDERCURL_STYLE UNDERCURL_CURLY
|