Skip to content

Commit

Permalink
chore(just): move away from tput
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariKnight committed Jan 13, 2024
1 parent fbc5602 commit 50f882b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/ublue-os-just/justlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
########
### Text Formating
########
declare -r bold=$(tput bold)
declare -r bold=$'\033[1m'
declare -r b="$bold"
declare -r normal=$(tput sgr0)
declare -r dim=$(tput dim)
declare -r normal=$'\033[0m'
declare -r dim=$'\033[2m'
declare -r underline=$'\033[4m'
declare -r u="$underline"
declare -r blink=$'\033[5m'
Expand Down

0 comments on commit 50f882b

Please sign in to comment.