-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try using abduco for session management which should have buffering (#…
…439) * Try using abduco for session management which should have buffering dtach does work but is too primitive to buffer and repaint previous output. Abduco might be a better solve * add annoying tput command * try force enabling scroll * different use of tput rmcap
- Loading branch information
1 parent
8cf7240
commit 32a8f88
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
tput rmcup | ||
|
||
if [ -f /home/plural/.env ]; then | ||
source /home/plural/.env | ||
fi | ||
|
||
cd ~/workspace || echo "could not check out workspace repo, ensure it exists and git permissions are correct" | ||
|
||
zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
|
||
session="/tmp/plural-workspace" | ||
session="plural-workspace" | ||
|
||
# ensure necessary env vars are populated | ||
if [ -f /home/plural/.env ]; then | ||
source /home/plural/.env | ||
fi | ||
|
||
dtach -A $session -r winch -Ez /home/plural/boot.sh | ||
abduco -A $session /home/plural/boot.sh |