mirror of
https://github.com/tiyn/st
synced 2025-11-09 15:41:18 +01:00
Compare commits
4 Commits
45c5e9b3c1
...
externalpi
| Author | SHA1 | Date | |
|---|---|---|---|
| b141801a78 | |||
| d6315b6054 | |||
| 38c5d4fd4c | |||
| f2f92955cc |
46
README.md
46
README.md
@@ -1,46 +0,0 @@
|
|||||||
# st-0.9.0
|
|
||||||
|
|
||||||
This is my patched version of st. The base version is directly from suckless.org.
|
|
||||||
This belongs to my larbs installation script, but does not directly depend on it.
|
|
||||||
It is supposed to work in the environment after the larbs-base-installation.
|
|
||||||
|
|
||||||
## Patches
|
|
||||||
|
|
||||||
The list below shows the currently applied patches to the master branch.
|
|
||||||
|
|
||||||
- st-anysize-20220718-baa9357.diff (st leaves no gaps if the height/width doesn't match a multiple of
|
|
||||||
character height)
|
|
||||||
- st-ligatures-scrollback-20230105-0.9.diff (scrollback compatible addition of ligatures)
|
|
||||||
- st-scrollback-0.8.5.diff (add scrollback functionality)
|
|
||||||
|
|
||||||
## Hotkeys
|
|
||||||
|
|
||||||
There are various shortcuts and hotkeys used in this version. Included in my build are the following.
|
|
||||||
|
|
||||||
| ModKey | Shift | Key | Function |
|
|
||||||
| ------ | ----- | --------------- | --------------- |
|
|
||||||
| Alt | | Break | Send break |
|
|
||||||
| Alt | | Print | Toggle printer |
|
|
||||||
| Alt | | Print | Print screen |
|
|
||||||
| | Shift | Insert | Clipboard paste |
|
|
||||||
| Alt | | c | Clipboard copy |
|
|
||||||
| Alt | | v | Clipboard paste |
|
|
||||||
| Alt | | p | Selected paste |
|
|
||||||
| Alt | | NumLock | Toggle Numlock |
|
|
||||||
| Alt | | k | Scroll up |
|
|
||||||
| Alt | | j | Scroll down |
|
|
||||||
| | | MouseScrollUp | Scroll up |
|
|
||||||
| | | MouseScrollDown | Scroll down |
|
|
||||||
| Alt | Shift | u | Zoom in |
|
|
||||||
| Alt | Shift | i | Zoom out |
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
To install this package you can run several commands.
|
|
||||||
If you want to use st with colored emojis make sure to install `libxft-bgra`
|
|
||||||
(`yay -S libxft-bgra` on arch based systems`).
|
|
||||||
|
|
||||||
The most basic way is to clone the repository and then invoke make.
|
|
||||||
|
|
||||||
- `git clone https://github.com/tiyn/st-0.9.0`
|
|
||||||
- `make clean install`
|
|
||||||
92
st-externalpipe-0.8.4.diff
Normal file
92
st-externalpipe-0.8.4.diff
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
diff --git a/st.c b/st.c
|
||||||
|
index 76b7e0d..0e9a614 100644
|
||||||
|
--- a/st.c
|
||||||
|
+++ b/st.c
|
||||||
|
@@ -723,8 +723,14 @@ sigchld(int a)
|
||||||
|
if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
|
||||||
|
die("waiting for pid %hd failed: %s\n", pid, strerror(errno));
|
||||||
|
|
||||||
|
- if (pid != p)
|
||||||
|
+ if (pid != p) {
|
||||||
|
+ if (p == 0 && wait(&stat) < 0)
|
||||||
|
+ die("wait: %s\n", strerror(errno));
|
||||||
|
+
|
||||||
|
+ /* reinstall sigchld handler */
|
||||||
|
+ signal(SIGCHLD, sigchld);
|
||||||
|
return;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
if (WIFEXITED(stat) && WEXITSTATUS(stat))
|
||||||
|
die("child exited with status %d\n", WEXITSTATUS(stat));
|
||||||
|
@@ -1926,6 +1932,59 @@ strparse(void)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+externalpipe(const Arg *arg)
|
||||||
|
+{
|
||||||
|
+ int to[2];
|
||||||
|
+ char buf[UTF_SIZ];
|
||||||
|
+ void (*oldsigpipe)(int);
|
||||||
|
+ Glyph *bp, *end;
|
||||||
|
+ int lastpos, n, newline;
|
||||||
|
+
|
||||||
|
+ if (pipe(to) == -1)
|
||||||
|
+ return;
|
||||||
|
+
|
||||||
|
+ switch (fork()) {
|
||||||
|
+ case -1:
|
||||||
|
+ close(to[0]);
|
||||||
|
+ close(to[1]);
|
||||||
|
+ return;
|
||||||
|
+ case 0:
|
||||||
|
+ dup2(to[0], STDIN_FILENO);
|
||||||
|
+ close(to[0]);
|
||||||
|
+ close(to[1]);
|
||||||
|
+ execvp(((char **)arg->v)[0], (char **)arg->v);
|
||||||
|
+ fprintf(stderr, "st: execvp %s\n", ((char **)arg->v)[0]);
|
||||||
|
+ perror("failed");
|
||||||
|
+ exit(0);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ close(to[0]);
|
||||||
|
+ /* ignore sigpipe for now, in case child exists early */
|
||||||
|
+ oldsigpipe = signal(SIGPIPE, SIG_IGN);
|
||||||
|
+ newline = 0;
|
||||||
|
+ for (n = 0; n < term.row; n++) {
|
||||||
|
+ bp = term.line[n];
|
||||||
|
+ lastpos = MIN(tlinelen(n) + 1, term.col) - 1;
|
||||||
|
+ if (lastpos < 0)
|
||||||
|
+ break;
|
||||||
|
+ end = &bp[lastpos + 1];
|
||||||
|
+ for (; bp < end; ++bp)
|
||||||
|
+ if (xwrite(to[1], buf, utf8encode(bp->u, buf)) < 0)
|
||||||
|
+ break;
|
||||||
|
+ if ((newline = term.line[n][lastpos].mode & ATTR_WRAP))
|
||||||
|
+ continue;
|
||||||
|
+ if (xwrite(to[1], "\n", 1) < 0)
|
||||||
|
+ break;
|
||||||
|
+ newline = 0;
|
||||||
|
+ }
|
||||||
|
+ if (newline)
|
||||||
|
+ (void)xwrite(to[1], "\n", 1);
|
||||||
|
+ close(to[1]);
|
||||||
|
+ /* restore */
|
||||||
|
+ signal(SIGPIPE, oldsigpipe);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void
|
||||||
|
strdump(void)
|
||||||
|
{
|
||||||
|
diff --git a/st.h b/st.h
|
||||||
|
index 3d351b6..392b64e 100644
|
||||||
|
--- a/st.h
|
||||||
|
+++ b/st.h
|
||||||
|
@@ -81,6 +81,7 @@ void die(const char *, ...);
|
||||||
|
void redraw(void);
|
||||||
|
void draw(void);
|
||||||
|
|
||||||
|
+void externalpipe(const Arg *);
|
||||||
|
void printscreen(const Arg *);
|
||||||
|
void printsel(const Arg *);
|
||||||
|
void sendbreak(const Arg *);
|
||||||
61
st.c
61
st.c
@@ -718,8 +718,14 @@ sigchld(int a)
|
|||||||
if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
|
if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
|
||||||
die("waiting for pid %hd failed: %s\n", pid, strerror(errno));
|
die("waiting for pid %hd failed: %s\n", pid, strerror(errno));
|
||||||
|
|
||||||
if (pid != p)
|
if (pid != p) {
|
||||||
|
if (p == 0 && wait(&stat) < 0)
|
||||||
|
die("wait: %s\n", strerror(errno));
|
||||||
|
|
||||||
|
/* reinstall sigchld handler */
|
||||||
|
signal(SIGCHLD, sigchld);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (WIFEXITED(stat) && WEXITSTATUS(stat))
|
if (WIFEXITED(stat) && WEXITSTATUS(stat))
|
||||||
die("child exited with status %d\n", WEXITSTATUS(stat));
|
die("child exited with status %d\n", WEXITSTATUS(stat));
|
||||||
@@ -1981,6 +1987,59 @@ strparse(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
externalpipe(const Arg *arg)
|
||||||
|
{
|
||||||
|
int to[2];
|
||||||
|
char buf[UTF_SIZ];
|
||||||
|
void (*oldsigpipe)(int);
|
||||||
|
Glyph *bp, *end;
|
||||||
|
int lastpos, n, newline;
|
||||||
|
|
||||||
|
if (pipe(to) == -1)
|
||||||
|
return;
|
||||||
|
|
||||||
|
switch (fork()) {
|
||||||
|
case -1:
|
||||||
|
close(to[0]);
|
||||||
|
close(to[1]);
|
||||||
|
return;
|
||||||
|
case 0:
|
||||||
|
dup2(to[0], STDIN_FILENO);
|
||||||
|
close(to[0]);
|
||||||
|
close(to[1]);
|
||||||
|
execvp(((char **)arg->v)[0], (char **)arg->v);
|
||||||
|
fprintf(stderr, "st: execvp %s\n", ((char **)arg->v)[0]);
|
||||||
|
perror("failed");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(to[0]);
|
||||||
|
/* ignore sigpipe for now, in case child exists early */
|
||||||
|
oldsigpipe = signal(SIGPIPE, SIG_IGN);
|
||||||
|
newline = 0;
|
||||||
|
for (n = 0; n < term.row; n++) {
|
||||||
|
bp = term.line[n];
|
||||||
|
lastpos = MIN(tlinelen(n) + 1, term.col) - 1;
|
||||||
|
if (lastpos < 0)
|
||||||
|
break;
|
||||||
|
end = &bp[lastpos + 1];
|
||||||
|
for (; bp < end; ++bp)
|
||||||
|
if (xwrite(to[1], buf, utf8encode(bp->u, buf)) < 0)
|
||||||
|
break;
|
||||||
|
if ((newline = term.line[n][lastpos].mode & ATTR_WRAP))
|
||||||
|
continue;
|
||||||
|
if (xwrite(to[1], "\n", 1) < 0)
|
||||||
|
break;
|
||||||
|
newline = 0;
|
||||||
|
}
|
||||||
|
if (newline)
|
||||||
|
(void)xwrite(to[1], "\n", 1);
|
||||||
|
close(to[1]);
|
||||||
|
/* restore */
|
||||||
|
signal(SIGPIPE, oldsigpipe);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
strdump(void)
|
strdump(void)
|
||||||
{
|
{
|
||||||
|
|||||||
1
st.h
1
st.h
@@ -81,6 +81,7 @@ void die(const char *, ...);
|
|||||||
void redraw(void);
|
void redraw(void);
|
||||||
void draw(void);
|
void draw(void);
|
||||||
|
|
||||||
|
void externalpipe(const Arg *);
|
||||||
void printscreen(const Arg *);
|
void printscreen(const Arg *);
|
||||||
void printsel(const Arg *);
|
void printsel(const Arg *);
|
||||||
void sendbreak(const Arg *);
|
void sendbreak(const Arg *);
|
||||||
|
|||||||
Reference in New Issue
Block a user