Fork of st-flexipatch for personal use
Go to file
2024-08-11 12:48:43 +05:00
patch sixel: improve the renderer (#143) 2024-07-07 21:18:09 +02:00
.gitattributes Add gitattributes 2024-07-22 14:31:17 +05:00
.gitignore Add my config 2024-06-24 15:32:04 +05:00
arg.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
config.def.h Adding the anygeometry patch ref. #137 2024-05-31 22:47:52 +02:00
config.h Include patches.h for correct syntax highlighting 2024-07-20 13:27:36 +05:00
config.mk Add my config 2024-06-24 15:32:04 +05:00
FAQ Bump to 68d1ad9. 2022-10-06 15:33:26 +02:00
hb.c ligatures: upgrading 2024-03-07 15:34:21 +01:00
hb.h ligatures: upgrading 2024-03-07 15:34:21 +01:00
LEGACY Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
LICENSE LICENSE: bump year 2022-02-24 13:38:54 +01:00
Makefile Add my config 2024-06-24 15:32:04 +05:00
patches.def.h Adding the anygeometry patch ref. #137 2024-05-31 22:47:52 +02:00
patches.h Apply keyboard select patch 2024-07-10 11:34:03 +05:00
README Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
README.md fix BadMatch error when embedding on some windows 2024-08-09 22:06:40 +02:00
sixel_hls.c Remove black bars from sixel images and add... (#107) 2023-11-23 21:45:20 +01:00
sixel_hls.h Adding sixel support ref. #7 2021-03-25 11:10:57 +01:00
sixel.c sixel: add support for fully transparent bg (P2=1) (#132) 2024-04-17 18:04:27 +02:00
sixel.h sixel: add support for fully transparent bg (P2=1) (#132) 2024-04-17 18:04:27 +02:00
st-copyout Add my config 2024-06-24 15:32:04 +05:00
st-urlhandler Add my config 2024-06-24 15:32:04 +05:00
st.1 Add support for scroll(1) 2020-04-20 10:24:34 +02:00
st.c Fix issue with columns and reflow that breaks sixels (#146) 2024-08-09 09:12:51 +02:00
st.desktop Adding desktop patch ref. #21 2021-05-08 14:24:42 +02:00
st.h sixel: add support for fully transparent bg (P2=1) (#132) 2024-04-17 18:04:27 +02:00
st.info Add terminfo entries for bracketed paste mode 2023-10-08 20:24:52 +02:00
TODO Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
win.h Adding reflow patch (#120) 2024-03-13 10:33:51 +01:00
x.c fix BadMatch error when embedding on some windows 2024-08-09 22:06:40 +02:00

st

Personal build of st generated using st-flexipatch

Patches applied:

  • alpha

    • adds transparency for the terminal
  • blinking-cursor

    • allows the use of a blinking cursor
  • bold-is-not-bright

    • 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
  • boxdraw

    • adds dustom rendering of lines/blocks/braille characters for gapless alignment
  • clipboard

    • by default st only sets PRIMARY on selection
    • this patch makes st set CLIPBOARD on selection
  • csi_23_23

    • adds support for CSI escape sequences 22 and 23, which save and restores the window title (for instance nvim does this when opening and closing)
  • externalpipe

    • this patch allows for reading and writing st's screen through a pipe, e.g. to pass info to dmenu
  • font2

    • allows you to add a spare font besides the default
  • hidecursor

    • hides the X cursor whenever a key is pressed and show it back when the mouse is moved in the terminal window
  • hide-terminal-cursor

    • hides the terminal cursor when the window loses focus (as opposed to showing a hollow cursor)
  • invert

    • 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
  • iso14755

    • 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
  • keyboard-select

    • allows you to select text on the terminal using keyboard shortcuts
  • ligatures

    • 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
  • monochrome

    • makes st ignore terminal color attributes to make for a monochrome look
  • newterm

    • 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
  • reflow

    • allows st to be resized without cutting off text when the terminal window is made larger again
    • text wraps when the terminal window is made smaller
  • right-click-to-plumb

    • allows you to right-click on some selected text to send it to the plumbing program of choice
  • scrollback

    • allows you scroll back through terminal output using keyboard shortcuts or mousewheel
  • scrollback-mouse-altscreen

    • Scroll back through terminal output using mouse wheel (when not in MODE_ALTSCREEN). This variant depends on SCROLLBACK_PATCH being enabled.
  • sixel

    • this patch adds SIXEL graphics support
  • swapmouse

    • changes the mouse shape to the global default when the running program subscribes for mouse events, for instance, in programs like ranger and fzf
    • it emulates the behaviour shown by vte terminals like termite
  • use-XftFontMatch

    • use XftFontMatch in place of FcFontMatch to allow font to scale with Xft.dpi resource setting
  • vertcenter

    • vertically center lines in the space available if you have set a larger chscale in config.h
  • wide-glyphs

    • adds proper support for wide glyphs, as opposed to rendering smaller or cut glyphs
  • workingdir

    • allows user to specify the initial path st should use as the working directory
  • xresources

    • adds the ability to configure st via Xresources
    • during startup, st will read and apply the resources named in the resources[] array in config.h
  • xresources-reload

    • reload the Xresources config when a SIGUSR1 signal is received e.g. killall -USR1 st

Additions

  • Scripts that use externalpipe patch for handling urls and copying of outputs. -
    • st-urlhandler
    • st-copyout