Verified Commit c4205ad1 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Reduce tput calls in term-startup script

Admittedly, only by one call…
parent 284fccf0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ declare -A TERM_STARTUP_OPTIONS=(
. ~/.shell/lib/term.bash
. ~/.profile

declare -r CODE_HIGHLIGHT=$(tput setab 15; tput setaf 16)
declare -r CODE_HIGHLIGHT=$(tput -S <<<"setab 15"$'\n'"setaf 16")
declare -r CODE_RESET=$(tput sgr0)
declare -a OPTIONS=()
declare -i FOCUS=0