mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-16 20:00:50 +01:00
a6687d45e0
Here are the source files I package with my PKGBUILDs. The tari-scripts directory features some color scripts from around the web. tari-urxvt contains patches for urxvt, tari-util houses launch.c, and tari-web is where my mozilla.cfg is located.
24 lines
822 B
Bash
Executable File
24 lines
822 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Author: GekkoP
|
|
|
|
f=3 b=4
|
|
for j in f b; do
|
|
for i in {0..7}; do
|
|
printf -v $j$i %b "\e[${!j}${i}m"
|
|
done
|
|
done
|
|
d=$'\e[1m'
|
|
t=$'\e[0m'
|
|
v=$'\e[7m'
|
|
|
|
|
|
cat << EOF
|
|
|
|
$f1████$d▄$t $f2████$d▄$t $f3████$d▄$t $f4████$d▄$t $f5████$d▄$t $f6████$d▄$t $f7████$d▄$t
|
|
$f1████$d█$t $f2████$d█$t $f3████$d█$t $f4████$d█$t $f5████$d█$t $f6████$d█$t $f7████$d█$t
|
|
$f1████$d█$t $f2████$d█$t $f3████$d█$t $f4████$d█$t $f5████$d█$t $f6████$d█$t $f7████$d█$t
|
|
$d$f1 ▀▀▀▀ $f2▀▀▀▀ $f3▀▀▀▀ $f4▀▀▀▀ $f5▀▀▀▀ $f6▀▀▀▀ $f7▀▀▀▀$t
|
|
|
|
EOF
|