Adding relativeborder, fix-keyboard-input, iso14755, visualbell, rightclicktoplumb, boxdraw and keyboard-select patches
This commit is contained in:
parent
db32474a7f
commit
cfecd195ba
25 changed files with 1981 additions and 46 deletions
29
README.md
29
README.md
|
|
@ -1,16 +1,18 @@
|
|||
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.
|
||||
Similar to [dwm-flexipatch](https://github.com/bakkeby/dwm-flexipatch) this st 0.8.2 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](https://github.com/bakkeby/dwm-flexipatch/blob/master/patches.h):
|
||||
For example to include the `alpha` patch then you would only need to flip this setting from 0 to 1 in [patches.h](https://github.com/bakkeby/st-flexipatch/blob/master/patches.h):
|
||||
```c
|
||||
#define ALPHA_PATCH 1
|
||||
```
|
||||
|
||||
Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on the st terminal, how to install it and how it works.
|
||||
Refer to [https://st.suckless.org/](https://st.suckless.org/) for details on the st terminal, how to install it and how it works.
|
||||
|
||||
---
|
||||
|
||||
### Changelog:
|
||||
|
||||
2019-09-17 - Added relativeborder, fix-keyboard-input, iso14755, visualbell, right-click-to-plumb, boxdraw and keyboard-select patches
|
||||
|
||||
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:
|
||||
|
|
@ -25,6 +27,9 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
- 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](https://st.suckless.org/patches/boxdraw/)
|
||||
- adds dustom rendering of lines/blocks/braille characters for gapless alignment
|
||||
|
||||
- [clipboard](https://st.suckless.org/patches/clipboard/)
|
||||
- by default st only sets PRIMARY on selection
|
||||
- this patch makes st set CLIPBOARD on selection
|
||||
|
|
@ -42,9 +47,18 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
- [fixime](https://st.suckless.org/patches/fix_ime/)
|
||||
- adds better Input Method Editor (IME) support
|
||||
|
||||
- [fix-keyboard-input](https://st.suckless.org/patches/fix_keyboard_input/)
|
||||
- allows cli applications to use all the fancy key combinations that are available to GUI applications
|
||||
|
||||
- [hidecursor](https://st.suckless.org/patches/hidecursor/)
|
||||
- hides the X cursor whenever a key is pressed and show it back when the mouse is moved in the terminal window
|
||||
|
||||
- [iso14755](https://st.suckless.org/patches/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](https://st.suckless.org/patches/keyboard_select/)
|
||||
- allows you to select text on the terminal using keyboard shortcuts
|
||||
|
||||
- [newterm](https://st.suckless.org/patches/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
|
||||
|
|
@ -52,6 +66,12 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
- [open-copied-url](https://st.suckless.org/patches/open_copied_url/)
|
||||
- open contents of the clipboard in a user-defined browser
|
||||
|
||||
- [relativeborder](https://st.suckless.org/patches/relativeborder/)
|
||||
- allows you to specify a border that is relative in size to the width of a cell in the terminal
|
||||
|
||||
- [right-click-to-plumb](https://st.suckless.org/patches/right_click_to_plumb/)
|
||||
- allows you to right-click on some selected text to send it to the plumbing program of choice
|
||||
|
||||
- [scrollback](https://st.suckless.org/patches/scrollback/)
|
||||
- allows you scroll back through terminal output using keyboard shortcuts or mousewheel
|
||||
|
||||
|
|
@ -64,6 +84,9 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
- [vertcenter](https://st.suckless.org/patches/vertcenter/)
|
||||
- vertically center lines in the space available if you have set a larger chscale in config.h
|
||||
|
||||
- [visualbell](https://st.suckless.org/patches/visualbell/)
|
||||
- adds visual indicators for the terminal bell event
|
||||
|
||||
- [xresources](https://st.suckless.org/patches/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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue