vim ~/.byobu/statusrc
#MONITORED_TEMP=/proc/acpi/thermal_zone/THM0/temperature
MONITORED_TEMP=/sys/class/thermal/thermal_zone5/temp
answer from here
This time I found a workable solution. From man byobu
:
SCROLLBACK, COPY, PASTE MODES
Each window in Byobu has up to 10,000 lines of scrollback history,
which you can enter and navigate using the alt-pgup and alt-pgdn keys.
Exit this scrollback mode by hitting enter. You can also easily copy
and paste text from scrollback mode. To do so, enter scrollback using
alt-pgup or alt-pgdn, press the spacebar to start highlighting text,
use up/down/left/right/pgup/pgdn to select the text, and press enter to
copy the text. You can then paste the text using alt-insert or ctrl-
a-].
- I hit F7 to enter scrollback mode,
- Space to start selecting,
- gg to scroll to the top of the buffer (thanks @GeorgeMarian)
- If that doesn't work, try this: either with lots of Page up or : followed by the largest line number (indicated top right) and Page up to get to the top of that page,
- Enter to copy (to byobu's clipboard, not a terminal/system one),
- then
cat > my-byobu-dump.txt
in the terminal, - Alt+Insert or ctrl+A,] to paste (again, from byobu's clipboard)
- Ctrl+D to close the file.