Compare commits

..

3 Commits

Author SHA1 Message Date
Jacopo De Simoi 89bdc86966 I forgot what this was for… 3 years ago
Jacopo De Simoi 4eef780ef0 Add custom palette display 3 years ago
Jacopo De Simoi 178e52147f [ascii] Add gentoo logo 3 years ago
  1. 14
      ascii/gentoo-one
  2. 12
      neofetch

@ -0,0 +1,14 @@
${c1}
∎∎∎∎∎∎∎∎∎∎∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎ ∎∎
∎∎∎∎∎∎∎∎∎∎∎∎
∎∎
∎∎
∎∎∎∎∎∎∎∎∎∎

@ -2021,6 +2021,16 @@ get_wm() {
wm_run=1
}
get_colorscheme() {
for i in 30 31 91 33 32 36 34 35 95 37; do printf -v colorscheme "%b\033[${i}m\033[0m" "$colorscheme";done;
}
get_nil() {
printf -v nil " "
}
get_wm_theme() {
((wm_run != 1)) && get_wm
((de_run != 1)) && get_de
@ -3961,7 +3971,7 @@ get_cols() {
if [[ "$color_blocks" == "on" ]]; then
# Convert the width to space chars.
printf -v block_width "%${block_width}s"
printf -v block_width A #"%${block_width}s"
# Generate the string.
for ((block_range[0]; block_range[0]<=block_range[1]; block_range[0]++)); do

Loading…
Cancel
Save