mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
f32facfbfd
This includes some changes to the scripts `README.md` to provide some more information on the different Alacritty scripts. A new script for testing the 24 bit support of Alacritty has been added with the `24-bit-color.sh` name. This should help with troubleshooting truecolor support issues. Since `perf` is a standard tool which is available in the official repositories for most distributions, it doesn't make much sense to provide an installation script specifically for Ubuntu. As a result of this, the script has been removed.
11 lines
203 B
Bash
Executable file
11 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for x in {0..8}; do
|
|
for i in {30..37}; do
|
|
for a in {40..47}; do
|
|
echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "
|
|
done
|
|
echo
|
|
done
|
|
done
|
|
echo ""
|