diff options
Diffstat (limited to 'scripts/.scripts/centered')
-rwxr-xr-x | scripts/.scripts/centered | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/.scripts/centered b/scripts/.scripts/centered deleted file mode 100755 index a663336..0000000 --- a/scripts/.scripts/centered +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -read title -clear -columns=$(tput cols) -rows=$(tput lines) -tput clear -y=$((($columns-$(echo -n $title | head -1 | wc -c))/2)) -x=$((($rows-$(echo $title | wc -l))/2)) - -while read p; do - tput cup $x $y - echo "$p" - x=$((x+1)) - -done <<< "$title"; - -tput cup $rows 0 |