mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
9 lines
176 B
Bash
Executable file
9 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
script_dir="$(dirname "$0")"
|
|
cols="$(tput cols)"
|
|
lines="$(tput lines)"
|
|
|
|
exec awk -v WIDTH="$((cols/2))" -v HEIGHT="$lines" -f "${script_dir}/colortest2.awk"
|