2019-09-16 07:35:57 +00:00
|
|
|
/*
|
|
|
|
* This file contains patch control flags.
|
|
|
|
*
|
|
|
|
* In principle you should be able to mix and match any patches
|
|
|
|
* you may want. In cases where patches are logically incompatible
|
|
|
|
* one patch may take precedence over the other as noted in the
|
|
|
|
* relevant descriptions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Patches */
|
|
|
|
|
|
|
|
/* The alpha patch adds transparency for the terminal.
|
|
|
|
* https://st.suckless.org/patches/alpha/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define ALPHA_PATCH 0
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
/* This patch allows st to reize to any pixel size rather than snapping to character width/height.
|
|
|
|
* https://st.suckless.org/patches/anysize/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define ANYSIZE_PATCH 0
|
2019-09-16 07:40:40 +00:00
|
|
|
|
|
|
|
/* By default bold text is rendered with a bold font in the bright variant of the current color.
|
|
|
|
* This patch makes bold text rendered simply as bold, leaving the color unaffected.
|
|
|
|
* https://st.suckless.org/patches/bold-is-not-bright/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define BOLD_IS_NOT_BRIGHT_PATCH 0
|
|
|
|
|
|
|
|
/* This patch adds dustom rendering of lines/blocks/braille characters for gapless alignment.
|
|
|
|
* https://st.suckless.org/patches/boxdraw/
|
|
|
|
*/
|
|
|
|
#define BOXDRAW_PATCH 0
|
2019-09-16 07:51:41 +00:00
|
|
|
|
|
|
|
/* By default st only sets PRIMARY on selection.
|
|
|
|
* This patch makes st set CLIPBOARD on selection.
|
|
|
|
* https://st.suckless.org/patches/clipboard/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define CLIPBOARD_PATCH 0
|
2019-09-16 08:40:16 +00:00
|
|
|
|
|
|
|
/* Select and copy the last URL displayed with Mod+l. Multiple invocations cycle through the
|
|
|
|
* available URLs.
|
|
|
|
* https://st.suckless.org/patches/copyurl/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define COPYURL_PATCH 0
|
2019-09-16 08:40:16 +00:00
|
|
|
|
|
|
|
/* Select and copy the last URL displayed with Mod+l. Multiple invocations cycle through the
|
|
|
|
* available URLs. This variant also highlights the selected URLs.
|
|
|
|
* https://st.suckless.org/patches/copyurl/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define COPYURL_HIGHLIGHT_SELECTED_URLS_PATCH 0
|
2019-09-16 08:40:16 +00:00
|
|
|
|
|
|
|
/* This patch adds the option of disabling bold fonts globally.
|
|
|
|
* https://st.suckless.org/patches/disable_bold_italic_fonts/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define DISABLE_BOLD_FONTS_PATCH 0
|
2019-09-16 08:40:16 +00:00
|
|
|
|
|
|
|
/* This patch adds the option of disabling italic fonts globally.
|
|
|
|
* https://st.suckless.org/patches/disable_bold_italic_fonts/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define DISABLE_ITALIC_FONTS_PATCH 0
|
2019-09-16 08:40:16 +00:00
|
|
|
|
|
|
|
/* This patch adds the option of disabling roman fonts globally.
|
|
|
|
* https://st.suckless.org/patches/disable_bold_italic_fonts/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define DISABLE_ROMAN_FONTS_PATCH 0
|
2019-09-16 10:40:07 +00:00
|
|
|
|
2019-09-16 23:18:44 +00:00
|
|
|
/* Reading and writing st's screen through a pipe, e.g. pass info to dmenu.
|
|
|
|
* https://st.suckless.org/patches/externalpipe/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define EXTERNALPIPE_PATCH 0
|
2019-09-16 23:18:44 +00:00
|
|
|
|
2020-04-20 11:06:39 +00:00
|
|
|
/* This patch improves and extends the externalpipe patch in two ways:
|
|
|
|
* - it prevents the reset of the signal handler set on SIGCHILD, when
|
|
|
|
* the forked process that executes the external process exits and
|
|
|
|
* - it adds the externalpipein function to redirect the standard output
|
|
|
|
* of the external command to the slave size of the pty, that is, as if
|
|
|
|
* the external program had been manually executed on the terminal
|
|
|
|
*
|
|
|
|
* It can be used to send desired escape sequences to the terminal with a
|
|
|
|
* keyboard shortcut. The patch was created to make use of the dynamic-colors
|
|
|
|
* tool that uses the OSC escape sequences to change the colors of the terminal.
|
|
|
|
*
|
2020-04-20 10:43:04 +00:00
|
|
|
* This patch depends on EXTERNALPIPE_PATCH being enabled.
|
2020-04-20 11:06:39 +00:00
|
|
|
*
|
|
|
|
* https://github.com/sos4nt/dynamic-colors
|
|
|
|
* https://lists.suckless.org/hackers/2004/17218.html
|
2020-04-20 10:43:04 +00:00
|
|
|
*/
|
2020-04-20 11:06:39 +00:00
|
|
|
#define EXTERNALPIPEIN_PATCH 0
|
2020-04-20 10:43:04 +00:00
|
|
|
|
2019-11-21 09:18:47 +00:00
|
|
|
/* This patch allows command line applications to use all the fancy key combinations
|
|
|
|
* that are available to GUI applications.
|
2019-09-17 06:53:00 +00:00
|
|
|
* https://st.suckless.org/patches/fix_keyboard_input/
|
|
|
|
*/
|
|
|
|
#define FIXKEYBOARDINPUT_PATCH 0
|
2019-09-16 10:40:07 +00:00
|
|
|
|
2020-03-21 15:41:43 +00:00
|
|
|
/* This patch allows you to add spare font besides the default. Some glyphs can be not present in
|
|
|
|
* the default font. For this glyphs st uses font-config and try to find them in font cache first.
|
|
|
|
* This patch append fonts defined in font2 variable to the beginning of the font cache.
|
|
|
|
* So they will be used first for glyphs that are absent in the default font.
|
|
|
|
* https://st.suckless.org/patches/font2/
|
|
|
|
*/
|
|
|
|
#define FONT2_PATCH 0
|
|
|
|
|
2020-04-20 10:14:49 +00:00
|
|
|
/* This patch creates a global flag which is set when a keypress is sent
|
|
|
|
* from X which forces the terminal to check for new data on the tty fd on
|
|
|
|
* every return from pselect(). When new data read from the tty results in
|
|
|
|
* a line being redrawn, the flag is reset. This results in a less input lag
|
|
|
|
* when typing on the terminal.
|
|
|
|
* https://lists.suckless.org/hackers/2004/17221.html
|
|
|
|
*/
|
|
|
|
#define FORCE_REDRAW_AFTER_KEYPRESS 0
|
|
|
|
|
2019-09-16 10:40:07 +00:00
|
|
|
/* Hide the X cursor whenever a key is pressed and show it back when the mouse is moved in
|
|
|
|
* the terminal window.
|
|
|
|
* https://st.suckless.org/patches/hidecursor/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define HIDECURSOR_PATCH 0
|
|
|
|
|
2020-03-29 13:38:16 +00:00
|
|
|
/* This patch adds a keybinding that lets you invert the current colorscheme of st.
|
|
|
|
* This provides a simple way to temporarily switch to a light colorscheme if you use a dark
|
|
|
|
* colorscheme or visa-versa.
|
|
|
|
* https://st.suckless.org/patches/invert/
|
|
|
|
*/
|
|
|
|
#define INVERT_PATCH 0
|
|
|
|
|
2019-09-17 06:53:00 +00:00
|
|
|
/* Pressing the default binding Ctrl+Shift-i will popup dmenu, asking you to enter a unicode
|
|
|
|
* codepoint that will be converted to a glyph and then pushed to st.
|
|
|
|
* https://st.suckless.org/patches/iso14755/
|
|
|
|
*/
|
|
|
|
#define ISO14755_PATCH 0
|
|
|
|
|
|
|
|
/* This patch allows you to select text on the terminal using keyboard shortcuts.
|
|
|
|
* https://st.suckless.org/patches/keyboard_select/
|
|
|
|
*/
|
|
|
|
#define KEYBOARDSELECT_PATCH 0
|
2019-09-16 10:40:07 +00:00
|
|
|
|
|
|
|
/* This patch allows you to spawn a new st terminal using Ctrl-Shift-Return. It will have the
|
|
|
|
* same CWD (current working directory) as the original st instance.
|
|
|
|
* https://st.suckless.org/patches/newterm/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define NEWTERM_PATCH 0
|
2019-09-16 10:40:07 +00:00
|
|
|
|
|
|
|
/* Open contents of the clipboard in a user-defined browser.
|
|
|
|
* https://st.suckless.org/patches/open_copied_url/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define OPENCOPIED_PATCH 0
|
|
|
|
|
|
|
|
/* This patch allows you to specify a border that is relative in size to the width of a cell
|
|
|
|
* in the terminal.
|
|
|
|
* https://st.suckless.org/patches/relativeborder/
|
|
|
|
*/
|
|
|
|
#define RELATIVEBORDER_PATCH 0
|
|
|
|
|
|
|
|
/* This patch allows you to right-click on some selected text to send it to the plumbing
|
|
|
|
* program of choice, e.g. open a file, view an image, open a URL.
|
|
|
|
* https://st.suckless.org/patches/right_click_to_plumb/
|
|
|
|
*/
|
|
|
|
#define RIGHTCLICKTOPLUMB_PATCH 0
|
2019-09-16 10:40:07 +00:00
|
|
|
|
2019-09-16 13:31:58 +00:00
|
|
|
/* Scroll back through terminal output using Shift+{PageUp, PageDown}.
|
|
|
|
* https://st.suckless.org/patches/scrollback/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define SCROLLBACK_PATCH 0
|
2019-09-16 13:31:58 +00:00
|
|
|
|
|
|
|
/* Scroll back through terminal output using Shift+MouseWheel.
|
|
|
|
* This variant depends on SCROLLBACK_PATCH being enabled.
|
|
|
|
* https://st.suckless.org/patches/scrollback/
|
|
|
|
*/
|
|
|
|
#define SCROLLBACK_MOUSE_PATCH 0
|
|
|
|
|
|
|
|
/* Scroll back through terminal output using mouse wheel (when not in MODE_ALTSCREEN).
|
|
|
|
* This variant depends on SCROLLBACK_PATCH being enabled.
|
|
|
|
* https://st.suckless.org/patches/scrollback/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define SCROLLBACK_MOUSE_ALTSCREEN_PATCH 0
|
2019-09-16 13:31:58 +00:00
|
|
|
|
2020-01-07 07:05:00 +00:00
|
|
|
/* This patch allows clients to embed into the st window and is useful if you tend to
|
|
|
|
* start X applications from the terminal. For example:
|
|
|
|
*
|
|
|
|
* $ surf -e $WINDOWID
|
|
|
|
*
|
|
|
|
* The behavior is similar to Plan 9 where applications can take over windows.
|
|
|
|
* URL TBC
|
|
|
|
*/
|
|
|
|
#define ST_EMBEDDER_PATCH 0
|
|
|
|
|
2019-09-16 23:18:44 +00:00
|
|
|
/* Use inverted defaultbg/fg for selection when bg/fg are the same.
|
|
|
|
* https://st.suckless.org/patches/spoiler/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define SPOILER_PATCH 0
|
2019-09-16 23:18:44 +00:00
|
|
|
|
|
|
|
/* Instead of a default X cursor, use the xterm cursor from your cursor theme.
|
|
|
|
* https://st.suckless.org/patches/themed_cursor/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define THEMED_CURSOR_PATCH 0
|
2019-09-16 23:18:44 +00:00
|
|
|
|
2019-09-16 13:31:58 +00:00
|
|
|
/*
|
|
|
|
* Vertically center lines in the space available if you have set a larger chscale in config.h
|
|
|
|
* https://st.suckless.org/patches/vertcenter/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define VERTCENTER_PATCH 0
|
|
|
|
|
|
|
|
/* On receiving a terminal bell event this patch briefly inverts the window content colors.
|
|
|
|
* You may need to reduce the xfps value in config.h to less or equal to that of the refresh
|
|
|
|
* rate of your monitor for this to be noticeble.
|
|
|
|
* The visualbell 2 and 3 patches takes precedence over this patch.
|
|
|
|
* https://st.suckless.org/patches/visualbell/
|
|
|
|
*/
|
|
|
|
#define VISUALBELL_1_PATCH 0
|
|
|
|
|
|
|
|
/* On receiving a terminal bell event this patch either:
|
|
|
|
* - briefly inverts the window content colors across the whole terminal or
|
|
|
|
* - briefly inverts the window content colors across the window border
|
|
|
|
* The visualbell 3 patch takes precedence over this patch.
|
|
|
|
* https://st.suckless.org/patches/visualbell/
|
|
|
|
*/
|
|
|
|
#define VISUALBELL_2_PATCH 0
|
|
|
|
|
|
|
|
/* On receiving a terminal bell event this patch either:
|
|
|
|
* - briefly inverts the window content colors across the whole terminal or
|
|
|
|
* - briefly inverts the window content colors across the window border or
|
|
|
|
* - draws a (configurable) circle as a visual bell indicator
|
|
|
|
* https://st.suckless.org/patches/visualbell/
|
|
|
|
*/
|
|
|
|
#define VISUALBELL_3_PATCH 0
|
2019-09-16 13:31:58 +00:00
|
|
|
|
2020-03-29 14:46:38 +00:00
|
|
|
/* This patch allows user to specify the initial path st should use as the working directory.
|
|
|
|
* https://st.suckless.org/patches/workingdir/
|
|
|
|
*/
|
|
|
|
#define WORKINGDIR_PATCH 0
|
|
|
|
|
2019-09-16 12:21:09 +00:00
|
|
|
/* This patch adds the ability to configure st via Xresources. At startup, st will read and
|
|
|
|
* apply the resources named in the resources[] array in config.h.
|
|
|
|
* https://st.suckless.org/patches/xresources/
|
|
|
|
*/
|
2019-09-17 06:53:00 +00:00
|
|
|
#define XRESOURCES_PATCH 0
|