ep/ep.c

90 lines
1.6 KiB
C
Raw Normal View History

2021-02-21 21:38:13 -06:00
/* Érico's prompt
*
* I decided I wanted to write my own prompt, so I didn't have to deal with
* configuring existing ones.
*
* Liberties taken:
* - will crash with segfault if allocations fail; NULL is special only when meaningful beyond allocation
* - assumes stdio is reasonably buffered, so multiple fputs calls aren't expensive
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <locale.h>
#include <errno.h>
#include <pthread.h>
2021-02-21 21:38:13 -06:00
#include "info_strings.h"
2021-02-21 22:43:22 -06:00
#include "ep.h"
2021-02-21 21:38:13 -06:00
#define PROMPT " ➜ "
int main(int argc, char **argv)
{
setlocale(LC_ALL, "");
out = stdout;
outerr = stderr;
2021-02-21 21:38:13 -06:00
2021-02-21 22:09:07 -06:00
char *shell_jobs = NULL;
int chroot = 0;
int c;
while((c = getopt(argc, argv, "cj:")) != -1) {
switch (c) {
case 'c':
chroot = 1;
break;
case 'j':
shell_jobs = optarg;
break;
default:
e(ERROR, "invalid command line option", 0);
2021-02-21 22:09:07 -06:00
return 1;
break;
}
}
/* start threads for long(er) running steps */
pthread_t git_handle;
if (pthread_create(&git_handle, NULL, get_git_branch_name, NULL)) {
e(WARN, "couldn't create git thread", errno);
}
2021-02-21 22:09:07 -06:00
if (chroot)
p("[chroot] ");
2021-02-21 21:38:13 -06:00
const char *home = getenv("HOME");
const char *hostname = getenv("HOSTNAME");
/* show we are on a different machine */
if (hostname) {
p(hostname);
p(" ");
}
print_pwd(home);
2021-02-21 21:38:13 -06:00
/* git status */
pthread_join(git_handle, NULL);
if (git_branch_name) {
p(" ");
p(git_branch_name);
}
2021-02-21 22:09:07 -06:00
/* print currently active shell jobs */
if (shell_jobs) {
int n = atoi(shell_jobs);
if (n >= 1) {
p("");
if (n > 1) {
/* jobs emoji is wide */
p(" ");
p(shell_jobs);
}
}
}
2021-02-21 21:38:13 -06:00
p(PROMPT);
}