linting
This commit is contained in:
parent
c944ec3114
commit
3625317a2d
2 changed files with 15 additions and 15 deletions
|
@ -5,7 +5,7 @@ COLUMNS=$(tput cols)
|
||||||
line() {
|
line() {
|
||||||
i=1
|
i=1
|
||||||
while [[ $i -le $COLUMNS ]]; do
|
while [[ $i -le $COLUMNS ]]; do
|
||||||
echo -en "\U1FB$((RANDOM % 3))$((RANDOM % 8+1))"
|
echo -en "\U1FB$((RANDOM % 3))$((RANDOM % 8 + 1))"
|
||||||
i=$((i + 1))
|
i=$((i + 1))
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
# >>> conda initialize >>>
|
# >>> conda initialize >>>
|
||||||
# !! Contents within this block are managed by 'conda init' !!
|
# !! Contents within this block are managed by 'conda init' !!
|
||||||
__conda_setup="$('$HOME/mambaforge/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
__conda_setup="$('$HOME/mambaforge/bin/conda' 'shell.zsh' 'hook' 2>/dev/null)"
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
eval "$__conda_setup"
|
eval "$__conda_setup"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue