Compare commits

..

2 commits

Author SHA1 Message Date
0e040a9f56 fix typo in Make 2022-09-07 09:16:31 -05:00
3625317a2d linting 2022-09-07 09:16:25 -05:00
3 changed files with 18 additions and 18 deletions

View file

@ -2,9 +2,9 @@
.PHONY: lint .PHONY: lint
lint: lint.py lint.sh lint: lint.py lint.sh
## lint.python | lint python files ## lint.py | lint python files
.PHONY: lint.python .PHONY: lint.py
lint.python: lint.py:
black $(shell find -type f -name "*.py") black $(shell find -type f -name "*.py")
## lint.sh | lint shell files ## lint.sh | lint shell files

View file

@ -3,16 +3,16 @@ sleep 0.2 # let wezterm catch up
COLUMNS=$(tput cols) 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
} }
print-line() { print-line() {
awk -v columns="$COLUMNS" -v s="$(line)" \ awk -v columns="$COLUMNS" -v s="$(line)" \
'BEGIN{ 'BEGIN{
for (colnum = 0; colnum<columns+1; colnum++) { for (colnum = 0; colnum<columns+1; colnum++) {
r = 255-(colnum*255/columns); r = 255-(colnum*255/columns);
g = (colnum*510/columns); g = (colnum*510/columns);

View file

@ -3,20 +3,20 @@
# >>> 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
if [ -f "$HOME/mambaforge/etc/profile.d/conda.sh" ]; then if [ -f "$HOME/mambaforge/etc/profile.d/conda.sh" ]; then
. "$HOME/mambaforge/etc/profile.d/conda.sh" . "$HOME/mambaforge/etc/profile.d/conda.sh"
else else
export PATH="$HOME/mambaforge/bin:$PATH" export PATH="$HOME/mambaforge/bin:$PATH"
fi fi
fi fi
unset __conda_setup unset __conda_setup
if [ -f "$HOME/mambaforge/etc/profile.d/mamba.sh" ]; then if [ -f "$HOME/mambaforge/etc/profile.d/mamba.sh" ]; then
. "$HOME/mambaforge/etc/profile.d/mamba.sh" . "$HOME/mambaforge/etc/profile.d/mamba.sh"
fi fi
# <<< conda initialize <<< # <<< conda initialize <<<