AAdd st patches

This commit is contained in:
Alexis Jhon Gaspar 2023-10-15 21:13:30 +08:00
parent 81fc79056d
commit 313e4a5c76
2 changed files with 9 additions and 9 deletions

View file

@ -19,10 +19,10 @@ XRENDER = -lXrender
#XCURSOR = -lXcursor #XCURSOR = -lXcursor
# Uncomment the lines below for the ligatures patch / LIGATURES_PATCH # Uncomment the lines below for the ligatures patch / LIGATURES_PATCH
#LIGATURES_C = hb.c LIGATURES_C = hb.c
#LIGATURES_H = hb.h LIGATURES_H = hb.h
#LIGATURES_INC = `$(PKG_CONFIG) --cflags harfbuzz` LIGATURES_INC = `$(PKG_CONFIG) --cflags harfbuzz`
#LIGATURES_LIBS = `$(PKG_CONFIG) --libs harfbuzz` LIGATURES_LIBS = `$(PKG_CONFIG) --libs harfbuzz`
# Uncomment this for the SIXEL patch / SIXEL_PATCH # Uncomment this for the SIXEL patch / SIXEL_PATCH
#SIXEL_C = sixel.c sixel_hls.c #SIXEL_C = sixel.c sixel_hls.c

View file

@ -204,13 +204,13 @@
* colorscheme or visa-versa. * colorscheme or visa-versa.
* https://st.suckless.org/patches/invert/ * https://st.suckless.org/patches/invert/
*/ */
#define INVERT_PATCH 1 #define INVERT_PATCH 0
/* Pressing the default binding Ctrl+Shift-i will popup dmenu, asking you to enter a unicode /* 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. * codepoint that will be converted to a glyph and then pushed to st.
* https://st.suckless.org/patches/iso14755/ * https://st.suckless.org/patches/iso14755/
*/ */
#define ISO14755_PATCH 0 #define ISO14755_PATCH 1
/* This patch allows you to select text on the terminal using keyboard shortcuts. /* This patch allows you to select text on the terminal using keyboard shortcuts.
* https://st.suckless.org/patches/keyboard_select/ * https://st.suckless.org/patches/keyboard_select/
@ -225,7 +225,7 @@
* https://github.com/cog1to/st-ligatures * https://github.com/cog1to/st-ligatures
* https://st.suckless.org/patches/ligatures/ * https://st.suckless.org/patches/ligatures/
*/ */
#define LIGATURES_PATCH 0 #define LIGATURES_PATCH 1
/* This patch makes st ignore terminal color attributes by forcing display of the default /* This patch makes st ignore terminal color attributes by forcing display of the default
* foreground and background colors only - making for a monochrome look. Idea ref. * foreground and background colors only - making for a monochrome look. Idea ref.
@ -347,7 +347,7 @@
* *
* https://st.suckless.org/patches/sync/ * https://st.suckless.org/patches/sync/
*/ */
#define SYNC_PATCH 0 #define SYNC_PATCH 1
/* Instead of a default X cursor, use the xterm cursor from your cursor theme. /* Instead of a default X cursor, use the xterm cursor from your cursor theme.
* You need to uncomment the corresponding line in config.mk to use the -lXcursor library * You need to uncomment the corresponding line in config.mk to use the -lXcursor library