sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 4ed2cd210a927b4b5bf224bdcb1859c176a0fc88
parent 3774b03171af1d24d92bd61b2d67a58e74847c5b
Author: Mertoalex Ashley <mertoalex+git@disroot.org>
Date:   Sun,  6 Apr 2025 06:37:46 +0300

[st][patches][customcursor] Add patch: setting cursor block to a custom character.

Diffstat:
Ast.suckless.org/patches/customcursor/index.md | 23+++++++++++++++++++++++
Ast.suckless.org/patches/customcursor/st-customcursor-20250405-98610fc.diff | 45+++++++++++++++++++++++++++++++++++++++++++++
Ast.suckless.org/patches/customcursor/st-customcursor.png | 0
3 files changed, 68 insertions(+), 0 deletions(-)

diff --git a/st.suckless.org/patches/customcursor/index.md b/st.suckless.org/patches/customcursor/index.md @@ -0,0 +1,23 @@ +customcursor +============ + +Description +----------- +This patch adds a constant value called `CUSTOM_BLOCK` to config.def.h to change snowman with custom cursor. + + +Example +------- +`static unsigned int cursorshape = 7;` + +`#define CUSTOM_BLOCK 0x003B /* semicolon (U+003B) */` + +[![custom-cursor-as-semicolon](st-customcursor.png)](st-customcursor.png) + +Download +-------- +* [st-customcursor-20250405-98610fc.diff](st-customcursor-20250405-98610fc.diff) + +Authors +------- +* Mertoalex Ashley - <mertoalex+suckless@disroot.org> diff --git a/st.suckless.org/patches/customcursor/st-customcursor-20250405-98610fc.diff b/st.suckless.org/patches/customcursor/st-customcursor-20250405-98610fc.diff @@ -0,0 +1,45 @@ +From 7e301a937ca2c8923e54ba159b387425cf213167 Mon Sep 17 00:00:00 2001 +From: Mertoalex Ashley <mertoalex+git@disroot.org> +Date: Sat, 5 Apr 2025 02:23:30 +0300 +Subject: [PATCH] adding macro to set set custom cursor for st extension. + +--- + config.def.h | 3 ++- + x.c | 4 ++++ + 2 files changed, 6 insertions(+), 1 deletion(-) + +diff --git a/config.def.h b/config.def.h +index 2cd740a..80dc484 100644 +--- a/config.def.h ++++ b/config.def.h +@@ -139,9 +139,10 @@ static unsigned int defaultrcs = 257; + * 2: Block ("█") + * 4: Underline ("_") + * 6: Bar ("|") +- * 7: Snowman ("☃") ++ * 7: Custom block (default: "☃") + */ + static unsigned int cursorshape = 2; ++#define CUSTOM_BLOCK 0x2603 /* snowman (U+2603) */ + + /* + * Default columns and rows numbers +diff --git a/x.c b/x.c +index d73152b..353635c 100644 +--- a/x.c ++++ b/x.c +@@ -1562,7 +1562,11 @@ xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og) + if (IS_SET(MODE_FOCUSED)) { + switch (win.cursor) { + case 7: /* st extension */ ++ #ifdef CUSTOM_BLOCK ++ g.u = CUSTOM_BLOCK; ++ #else + g.u = 0x2603; /* snowman (U+2603) */ ++ #endif + /* FALLTHROUGH */ + case 0: /* Blinking Block */ + case 1: /* Blinking Block (Default) */ +-- +2.48.1 + diff --git a/st.suckless.org/patches/customcursor/st-customcursor.png b/st.suckless.org/patches/customcursor/st-customcursor.png Binary files differ.