10 Commits

Author SHA1 Message Date
Michael Forney
a312a9a069 st: Flush wl_data_offer.receive after closing write end of pipe
Otherwise, we still might have it open when the peer is processing
the event.
2022-11-27 14:11:26 -08:00
Michael Forney
ef092b8e2d st: Minor wayland bugfixes 2022-10-25 12:18:22 -07:00
Michael Forney
f1ad243a04 st: Fix SIGCHLD handler in plumb patch
When I applied the plumb patch, I altered it slightly so that st
didn't block on the plumb command returning, but messed up the
condition in the SIGCHLD handler wait loop.
2021-03-29 19:28:15 -07:00
Michael Forney
db048e2891 st: Start codepoint dmenu on bottom of screen 2021-03-29 19:27:43 -07:00
Michael Forney
fa6f5e88ad st: Don't wait for process to exit when plumbing 2020-12-03 21:10:54 -08:00
Michael Forney
9d3a8c3958 st: Add support for plumbing and fix initial TTY resize 2020-12-03 01:57:35 -08:00
Michael Forney
5a498ee493 st: Send SIGHUP only when in PTY mode 2020-03-01 19:24:52 -08:00
Michael Forney
bba4833013 Update to stable xdg-shell
Since xdg-shell-unstable-5-protocol.c and xdg-shell-protocol.c
define conflicting symbols, this commit updates swc, netsurf, mupdf,
and st all at once.
2018-11-03 01:20:57 -07:00
Michael Forney
4a9f8e3cb8 st: Update to latest git 2016-12-21 20:36:47 -08:00
Michael Forney
293f5a93b7 Move to flat package hierarchy
Note to self: never try to move submodules again

To migrate your existing submodules (more or less):

	set -x
	set -e

	mkdir .git/modules/pkg
	for old in */*/src ; do
	        new="pkg/${old#*/}"
	        if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
			continue
		fi
		git -C ".git/modules/$old" config core.worktree "../../../../../$new"
		rmdir "$new"
		mv "$old" "$new"
	        sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
	        mv "$new/.git.tmp" "$new/.git"
		mkdir ".git/modules/${new%/src}"
	        mv ".git/modules/$old" ".git/modules/$new"

		rm "${old%/src}"/*.ninja
		mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
		rmdir "${old%/src}" || true
	done
	sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
	mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00