From d2173021346f38c371a6346c266a84ae751dac46 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 2 May 2021 22:47:40 +0100 Subject: [PATCH] Use prompt characters that work in x86_64 console --- roles/home-cli/files/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/home-cli/files/bashrc b/roles/home-cli/files/bashrc index 9f3ef8e..9fc2d26 100644 --- a/roles/home-cli/files/bashrc +++ b/roles/home-cli/files/bashrc @@ -70,9 +70,9 @@ bind 'set completion-ignore-case on' if test $(id -u) -eq 0 then - export PS1="\[\033[01;35m\]╭─ \u @ \h ────\n╰─ #\[\033[00m\] " + export PS1="\[\033[01;35m\]┌─ \u @ \h ────\n└─ #\[\033[00m\] " else - export PS1="\[\033[01;35m\]╭─ \u @ \h ────\n╰─ $\[\033[00m\] " + export PS1="\[\033[01;35m\]┌─ \u @ \h ────\n└─ $\[\033[00m\] " alias dnf="dnf -C" fi