Skip to content

Commit

Permalink
Fix to vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbruno committed Oct 22, 2023
1 parent 3a9475b commit 65d0032
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
18 changes: 0 additions & 18 deletions usr/share/biglinux/bash-config/bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -145,23 +145,5 @@ else

if [[ $TERM = linux ]]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
greenBg="\[\e[48;5;115m\]"
greenFg="\[\e[38;5;115m\]"

blackFg="\[\e[30m\]"
whiteFg="\[\e[37m\]"

# Reset
fmtReset="\[\e[0m\]"

systemBg="\[\e[48;5;237m\]"
systemFg="\[\e[38;5;237m\]"

nameBg="\[\e[48;5;248m\]"
nameFg="\[\e[38;5;248m\]"

# one line PS1
PS1="$systemBg$greenFg$systemFg$greenBg$blackFg$greenBg\w $fmtReset$greenFg$fmtReset "
fi
fi
7 changes: 6 additions & 1 deletion usr/share/biglinux/bash-config/blerc
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,12 @@ nameBg="\[\e[48;5;248m\]"
nameFg="\[\e[38;5;248m\]"

# one line PS1
PS1="$systemBg$blueFg$systemFg$blueBg$blackFg$blueBg\w $fmtReset$blueFg$fmtReset "
if [[ -n $CHROME_DESKTOP ]]; then
PS1="$systemBg$blueFg \u@\h $systemFg$blueBg$blackFg$blueBg\w $fmtReset$blueFg$fmtReset "
else
PS1="$systemBg$blueFg$systemFg$blueBg$blackFg$blueBg\w $fmtReset$blueFg$fmtReset "
fi


# two lines PS1
# PS1="\n$systemBg$blueFg  \u $systemFg$blueBg $blackFg$blueBg\w $fmtReset$blueFg$fmtReset\n$systemBg$whiteFg $systemFg$fmtReset$systemFg "
Expand Down

0 comments on commit 65d0032

Please sign in to comment.