summary refs log tree commit diff
path: root/bin/hibiki/prompt
blob: a4ceb603d15e1f7725fb735bda5938f242b1c34b (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ "$1" == "err" ]; then
	color="\[$(tput setaf 1)\]" # red
else
	color="\[$(tput setaf 10)\]"
fi
RESET="\[$(tput sgr0)\]"
echo "${color}\w${RESET} ❱ "