some nerd font variations

This commit is contained in:
Howland Owl 2016-12-09 19:08:15 +02:00
parent 5b9da06963
commit c1582d93fd
4 changed files with 16 additions and 0 deletions

BIN
fonts/3270-nf.ttf Normal file

Binary file not shown.

BIN
fonts/Monoid-nf.ttf Normal file

Binary file not shown.

BIN
fonts/monofur-nf.ttf Normal file

Binary file not shown.

16
powerline-shell-init Normal file
View file

@ -0,0 +1,16 @@
function powerline_precmd() {
PS1="$(/home/truck/stuff/powerline-shell/powerline-shell.py $? --shell zsh 2> /dev/null)"
}
function install_powerline_precmd() {
for s in "${precmd_functions[@]}"; do
if [ "$s" = "powerline_precmd" ]; then
return
fi
done
precmd_functions+=(powerline_precmd)
}
if [ "$TERM" != "linux" ]; then
install_powerline_precmd
fi