plan9port/bin/wintext

18 lines
250 B
Text
Raw Normal View History

2020-12-30 12:21:44 +00:00
#!/usr/local/plan9/bin/rc
2005-01-04 22:11:58 +00:00
2020-12-30 12:21:44 +00:00
if(~ $winid [0-9]*) {
2005-01-04 22:11:58 +00:00
9p read acme/$winid/body
exit 0
2020-12-30 12:21:44 +00:00
}
if(~ $text9term 'unix!'*) {
dial -e $text9term < /dev/null
2005-01-04 22:11:58 +00:00
exit 0
2020-12-30 12:21:44 +00:00
}
if(~ $TMUX ?*) {
tmux capture-pane -p
exit 0
2020-12-30 12:21:44 +00:00
}
2020-12-30 12:21:44 +00:00
echo 'no running window found' >[2=1]
2005-01-04 22:11:58 +00:00
exit 1