diff options
-rw-r--r-- | .config/vifm/vifmrc | 4 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 8 | ||||
-rwxr-xr-x | .local/bin/brb | 29 |
3 files changed, 31 insertions, 10 deletions
diff --git a/.config/vifm/vifmrc b/.config/vifm/vifmrc index bb3ca14..5918d22 100644 --- a/.config/vifm/vifmrc +++ b/.config/vifm/vifmrc @@ -50,8 +50,8 @@ map gh :cd ~/<CR> map gr :cd /<CR> map gm :cd /media<CR> -fileview */ tree -C %c -L 1 --dirsfirst -fileview ../ tree -C %c -L 1 --dirsfirst +fileview */ exa -L 1 -T --color=always --group-directories-first %c +fileview ../ exa -L 1 -T --color=always --group-directories-first %c fileviewer *.html w3m -dump %c filextype *.html,*.htm firefox %f 2>/dev/null & diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 730dfe3..56141a6 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -11,10 +11,12 @@ # == ===== ==== == # ======================== -alias exa='exa --color=always' -alias ls='exa -l --group-directories-first' +alias exa='exa --color=always --group-directories-first' +alias ls='exa -l' alias cat="sed ''" -alias tree='exa -T | less' +tree() { + exa -T $@ | less +} alias c='clear' alias less='less --tabs 4' alias bc='clear; bc -l' diff --git a/.local/bin/brb b/.local/bin/brb index 491a2d6..cde80bd 100755 --- a/.local/bin/brb +++ b/.local/bin/brb @@ -1,11 +1,30 @@ #!/usr/local/bin/dash +randcol() { + col=$(shuf -i 1-9 -n1) + wei=$(shuf -i 0-1 -n1) + pri="[${wei};3${col}m" + printf "\033%s" "$pri" +} + +nocol() { + printf "\033[0m" +} + while true; do clear - # figlet -s -L -c -t "Joe will be right back" | lolcat -F 0.05 - figlet -s -L -c -t "Joe will be right back" + randcol + figlet -s -L -c -t \ + -d "$HOME"/.local/packs/figlet-fonts \ + -f Banner3-D \ + "Joe will be right back" echo - # figlet -s -L -c -t "please stand by..." | lolcat -F 0.05 - figlet -s -L -c -t "please stand by..." - sleep 15 + nocol + icat "$HOME"/pics/profile/caco.png -w 80 -x 80 + randcol + figlet -s -L -c -t \ + -d "$HOME"/.local/packs/figlet-fonts \ + -f broadway_kb \ + "please stand by..." + sleep 5 done |