From ed9961410e3f9e4a23244446a4d2cfd2f1a79584 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 13 Aug 2018 23:09:53 -0400 Subject: Set title to tag name --- ui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui.c b/ui.c index 6fcb75e..29b7b08 100644 --- a/ui.c +++ b/ui.c @@ -169,6 +169,7 @@ void uiInit(void) { noecho(); colorInit(); + termInit(); ui.input = newpad(2, INPUT_COLS); mvwhline(ui.input, 0, 0, ACS_HLINE, INPUT_COLS); @@ -177,6 +178,7 @@ void uiInit(void) { nodelay(ui.input, true); ui.view = viewTag(TAG_STATUS); + termTitle(TAG_STATUS.name); uiShow(); } @@ -228,6 +230,7 @@ static void uiRedraw(void) { } static void uiView(struct View *view) { + termTitle(view->tag.name); if (view->topic) touchwin(view->topic); touchwin(view->log); ui.view->mark = true; -- cgit 1.4.1 (deprecated) process supervisor
summary refs log tree commit diff
path: root/spawn.sh (unfollow)
Commit message (Expand)Author
2020-08-14Add tentative implementation of spawn(8)June McEnroe='2020-08-15 15:29:58 -0400'>2020-08-15Implement service statusJune McEnroe
2020-08-15Parse control commandsJune McEnroe
2020-08-15Read service pipesJune McEnroe
2020-08-15Implement non-blocking line-buffered readingJune McEnroe
2020-08-15Generate tags fileJune McEnroe
2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe
2020-08-15Reap childrenJune McEnroe
2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe
2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe
2020-08-14Switch to timespec for timeoutsJune McEnroe
2020-08-14Implement serviceStartJune McEnroe
2020-08-14Flesh out Service structJune McEnroe
2020-08-14Build environment for servicesJune McEnroe
2020-08-14Implement spawntab parsingJune McEnroe
2020-08-14Open syslog, daemonize, write PIDJune McEnroe
2020-08-14Implement user and group lookupJune McEnroe
2020-08-14Add install targetJune McEnroe
2020-08-14Add spawnd skeletonJune McEnroe