enable patches I want
This commit is contained in:
parent
1ea9ec607b
commit
d0b32e19c6
2 changed files with 19 additions and 19 deletions
12
config.mk
12
config.mk
|
|
@ -21,14 +21,14 @@ PKG_CONFIG = pkg-config
|
|||
#XCURSOR = `$(PKG_CONFIG) --libs xcursor`
|
||||
|
||||
# Uncomment the lines below for the ligatures patch / LIGATURES_PATCH
|
||||
#LIGATURES_C = hb.c
|
||||
#LIGATURES_H = hb.h
|
||||
#LIGATURES_INC = `$(PKG_CONFIG) --cflags harfbuzz`
|
||||
#LIGATURES_LIBS = `$(PKG_CONFIG) --libs harfbuzz`
|
||||
LIGATURES_C = hb.c
|
||||
LIGATURES_H = hb.h
|
||||
LIGATURES_INC = `$(PKG_CONFIG) --cflags harfbuzz`
|
||||
LIGATURES_LIBS = `$(PKG_CONFIG) --libs harfbuzz`
|
||||
|
||||
# Uncomment this for the SIXEL patch / SIXEL_PATCH
|
||||
#SIXEL_C = sixel.c sixel_hls.c
|
||||
#SIXEL_LIBS = `$(PKG_CONFIG) --libs imlib2`
|
||||
SIXEL_C = sixel.c sixel_hls.c
|
||||
SIXEL_LIBS = `$(PKG_CONFIG) --libs imlib2`
|
||||
|
||||
# Uncomment for the netwmicon patch / NETWMICON_PATCH
|
||||
#NETWMICON_LIBS = `$(PKG_CONFIG) --libs gdlib`
|
||||
|
|
|
|||
|
|
@ -70,12 +70,12 @@
|
|||
* This patch makes bold text rendered simply as bold, leaving the color unaffected.
|
||||
* https://st.suckless.org/patches/bold-is-not-bright/
|
||||
*/
|
||||
#define BOLD_IS_NOT_BRIGHT_PATCH 0
|
||||
#define BOLD_IS_NOT_BRIGHT_PATCH 1
|
||||
|
||||
/* This patch adds custom rendering of lines/blocks/braille characters for gapless alignment.
|
||||
* https://st.suckless.org/patches/boxdraw/
|
||||
*/
|
||||
#define BOXDRAW_PATCH 0
|
||||
#define BOXDRAW_PATCH 1
|
||||
|
||||
/* By default st only sets PRIMARY on selection.
|
||||
* This patch makes st set CLIPBOARD on selection.
|
||||
|
|
@ -192,7 +192,7 @@
|
|||
* that are available to GUI applications.
|
||||
* https://st.suckless.org/patches/fix_keyboard_input/
|
||||
*/
|
||||
#define FIXKEYBOARDINPUT_PATCH 0
|
||||
#define FIXKEYBOARDINPUT_PATCH 1
|
||||
|
||||
/* 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.
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
* 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
|
||||
#define FONT2_PATCH 1
|
||||
|
||||
/* This patch adds the ability to toggle st into fullscreen mode.
|
||||
* Two key bindings are defined: F11 which is typical with other applications and Alt+Enter
|
||||
|
|
@ -239,7 +239,7 @@
|
|||
*
|
||||
* https://st.suckless.org/patches/keyboard_select/
|
||||
*/
|
||||
#define KEYBOARDSELECT_PATCH 0
|
||||
#define KEYBOARDSELECT_PATCH 1
|
||||
|
||||
/* This patch adds support for drawing ligatures using the Harfbuzz library to transform
|
||||
* original text of a single line to a list of glyphs with ligatures included.
|
||||
|
|
@ -302,7 +302,7 @@
|
|||
* same CWD (current working directory) as the original st instance.
|
||||
* https://st.suckless.org/patches/newterm/
|
||||
*/
|
||||
#define NEWTERM_PATCH 0
|
||||
#define NEWTERM_PATCH 1
|
||||
|
||||
/* This patch will set the _MOTIF_WM_HINTS property for the st window which, if the window manager
|
||||
* respects it, will show the st window without window decorations.
|
||||
|
|
@ -327,7 +327,7 @@
|
|||
*
|
||||
* https://www.reddit.com/r/suckless/comments/cc83om/st_open_url/
|
||||
*/
|
||||
#define OPENURLONCLICK_PATCH 0
|
||||
#define OPENURLONCLICK_PATCH 1
|
||||
|
||||
/* This patch allows st to fetch the current working directory through the OSC 7 escape
|
||||
* sequence emitted by shells. Must be used with newterm patch.
|
||||
|
|
@ -349,7 +349,7 @@
|
|||
* Text wraps when the terminal window is made smaller.
|
||||
* Comes with scrollback.
|
||||
*/
|
||||
#define REFLOW_PATCH 0
|
||||
#define REFLOW_PATCH 1
|
||||
|
||||
/* This patch allows you to specify a border that is relative in size to the width of a cell
|
||||
* in the terminal.
|
||||
|
|
@ -366,19 +366,19 @@
|
|||
/* Scroll back through terminal output using Shift+{PageUp, PageDown}.
|
||||
* https://st.suckless.org/patches/scrollback/
|
||||
*/
|
||||
#define SCROLLBACK_PATCH 0
|
||||
#define SCROLLBACK_PATCH 1
|
||||
|
||||
/* 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
|
||||
#define SCROLLBACK_MOUSE_PATCH 1
|
||||
|
||||
/* 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/
|
||||
*/
|
||||
#define SCROLLBACK_MOUSE_ALTSCREEN_PATCH 0
|
||||
#define SCROLLBACK_MOUSE_ALTSCREEN_PATCH 1
|
||||
|
||||
/* This patch adds the two color-settings selectionfg and selectionbg to config.def.h.
|
||||
* Those define the fore- and background colors which are used when text on the screen is selected
|
||||
|
|
@ -412,7 +412,7 @@
|
|||
*
|
||||
* https://gist.github.com/saitoha/70e0fdf22e3e8f63ce937c7f7da71809
|
||||
*/
|
||||
#define SIXEL_PATCH 0
|
||||
#define SIXEL_PATCH 1
|
||||
|
||||
/* 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:
|
||||
|
|
@ -472,7 +472,7 @@
|
|||
*
|
||||
* https://st.suckless.org/patches/undercurl/
|
||||
*/
|
||||
#define UNDERCURL_PATCH 0
|
||||
#define UNDERCURL_PATCH 1
|
||||
|
||||
/* Allows mouse scroll without modifier keys for regardless of alt screen using the external
|
||||
* scroll program.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue