diff options
| author | Mike Vink <mike@pionative.com> | 2025-01-19 14:03:13 +0100 |
|---|---|---|
| committer | Mike Vink <mike@pionative.com> | 2025-01-19 14:03:13 +0100 |
| commit | a481aa1ad86e16dcf3083734696bae29b5fd8ebb (patch) | |
| tree | ff935be4cd24c401312822b2268ac228bc1e8147 /xembed.c | |
Squashed 'mut/tabbed/' content from commit 405d9cd
git-subtree-dir: mut/tabbed
git-subtree-split: 405d9cdf3aa998b48c87fe995125877673712a74
Diffstat (limited to 'xembed.c')
| -rw-r--r-- | xembed.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/xembed.c b/xembed.c new file mode 100644 index 0000000..cbb0e97 --- /dev/null +++ b/xembed.c @@ -0,0 +1,45 @@ +/* + * See LICENSE file for copyright and license details. + */ + +#include <fcntl.h> +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> + +int +main(int argc, char *argv[]) +{ + char *xembed; + int tty; + pid_t pgrp, tcpgrp; + + if (argc < 3) { + fprintf(stderr, "usage: %s flag cmd ...\n", argv[0]); + return 2; + } + + if (!(xembed = getenv("XEMBED"))) + goto noembed; + + if ((tty = open("/dev/tty", O_RDONLY)) < 0) + goto noembed; + + pgrp = getpgrp(); + tcpgrp = tcgetpgrp(tty); + + close(tty); + + if (pgrp == tcpgrp) { /* in foreground of tty */ + argv[0] = argv[2]; + argv[2] = xembed; + } else { +noembed: + argv += 2; + } + + execvp(argv[0], argv); + + perror(argv[0]); /* failed to execute */ + return 1; +} |
