diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-25 17:55:27 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-25 17:55:27 -0400 |
commit | 6312ef191a9ab7466ec72bb3aba7138816062c2f (patch) | |
tree | f7b267d110190ecad3f3c28aa3b5e8143936e03c /.local/bin/bars | |
parent | 1b23fd869dc468c8469517761c17d4238a8d104f (diff) |
Cleanup useless/unused shell scripts
Diffstat (limited to '.local/bin/bars')
-rwxr-xr-x | .local/bin/bars | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.local/bin/bars b/.local/bin/bars deleted file mode 100755 index 0e671b6..0000000 --- a/.local/bin/bars +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/bash - -# ANSI color scheme script by pfh -# Source: http://crunchbang.org/forums/viewtopic.php?pid=139126#p139126 -# Initializing mod by lolilolicon from Archlinux -# - -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 -bld=$'\e[1m' -rst=$'\e[0m' -inv=$'\e[7m' - -cat << EOF - $f1▬▬▬▬▬ $f2▬▬▬▬▬ $f3▬▬▬▬▬ $f4▬▬▬▬▬ $f5▬▬▬▬▬ $f6▬▬▬▬▬ - $bld$f1▬▬▬▬▬ $f2▬▬▬▬▬ $f3▬▬▬▬▬ $f4▬▬▬▬▬ $f5▬▬▬▬▬ $f6▬▬▬▬▬ - $rst -EOF |