Go to file
bakkeby db32474a7f Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
patch Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
.gitignore Adding clipboard patch 2019-09-16 09:51:41 +02:00
FAQ Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
LEGACY Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
LICENSE Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
Makefile Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
README Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
README.md Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
TODO Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
arg.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
config.def.h Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
config.mk Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
patches.h Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00
st.1 Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
st.c Adding scrollback patch 2019-09-16 15:31:58 +02:00
st.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
st.info Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
win.h Initial commit, adding alpha and anysize patches 2019-09-16 09:35:57 +02:00
x.c Adding spoiler, external pipe and themed cursor patches 2019-09-17 01:18:44 +02:00

README.md

Similar to dwm-flexipatch this project has a different take on st patching. It uses preprocessor directives to decide whether or not to include a patch during build time. Essentially this means that this build, for better or worse, contains both the patched and the original code. The aim being that you can select which patches to include and the build will contain that code and nothing more.

For example to include the alpha patch then you would only need to flip this setting from 0 to 1 in patches.h:

#define ALPHA_PATCH 1

Refer to https://dwm.suckless.org/ for details on the st terminal, how to install it and how it works.


Changelog:

2019-09-16 - Added alpha, anysize, bold-is-not-bright, clipboard, copyurl, disable-fonts, externalpipe, fixime, hidecursor, newterm, open-copied-url, vertcenter, scrollback, spoiler, themed cursor and xresources patches

Patches included:

  • alpha

    • adds transparency for the terminal
  • anysize

    • allows st to reize to any pixel size rather than snapping to character width / height
  • 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
  • clipboard

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

    • this patch allows you to select and copy the last URL displayed with Mod+l
    • multiple invocations cycle through the available URLs
  • disable-fonts

    • this patch adds the option of disabling bold/italic/roman fonts globally
  • externalpipe

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

    • adds better Input Method Editor (IME) support
  • hidecursor

    • hides the X cursor whenever a key is pressed and show it back when the mouse is moved in the terminal window
  • 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
  • open-copied-url

    • open contents of the clipboard in a user-defined browser
  • scrollback

    • allows you scroll back through terminal output using keyboard shortcuts or mousewheel
  • spoiler

    • use inverted defaultbg/fg for selection when bg/fg are the same
  • themed-cursor

    • instead of a default X cursor, use the xterm cursor from your cursor theme
  • vertcenter

    • vertically center lines in the space available if you have set a larger chscale in config.h
  • 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