install: add --attr-{bold,italic,underline} to generate-alt-random-writes

This commit is contained in:
Daniel Eklöf 2020-11-16 20:04:12 +01:00
parent e60fd1e113
commit f75ff86fc0
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -210,6 +210,9 @@ tmp_file=$(mktemp)
--colors-bright \
--colors-256 \
--colors-rgb \
--attr-bold \
--attr-italic \
--attr-underline \
${tmp_file}
./pgo ${tmp_file} ${tmp_file} ${tmp_file} ${tmp_file} ${tmp_file} ${tmp_file}
rm ${tmp_file}
@ -234,7 +237,7 @@ We will use the script `scripts/generate-alt-random-writes.py`:
```sh
foot_tmp_file=$(mktemp)
./foot --config=/dev/null --term=xterm sh -c "<path-to-generate-alt-random-writes.py> --scroll --scroll-region --colors-regular --colors-bright --colors-256 --colors-rgb ${foot_tmp_file} && cat ${foot_tmp_file}"
./foot --config=/dev/null --term=xterm sh -c "<path-to-generate-alt-random-writes.py> --scroll --scroll-region --colors-regular --colors-bright --colors-256 --colors-rgb --attr-bold --attr-italic --attr-underline ${foot_tmp_file} && cat ${foot_tmp_file}"
rm ${foot_tmp_file}
```