diff --git a/prompt/bb.sh b/prompt/bb.sh index 9400863..c7eb85a 100644 --- a/prompt/bb.sh +++ b/prompt/bb.sh @@ -66,7 +66,6 @@ TIME_COLOR='\[\033[00;93;1m\]' ERR_COLOR='\[\033[00;31;1m\]' WHITEB='\[\033[00;97;1m\]' RST='\[\033[0m\]' -BOLD='\[\033[1m\]' BORDCOL='\[\033[00;90;1m\]' USERCOL=$SECONDARY_COLOR PATH_COLOR=$WHITEB diff --git a/webpage/BetterBash/src/App.vue b/webpage/BetterBash/src/App.vue index 0cae4d3..073f4cd 100644 --- a/webpage/BetterBash/src/App.vue +++ b/webpage/BetterBash/src/App.vue @@ -68,7 +68,7 @@ >)───(00:40:0000:40:03)──── @@ -109,7 +109,7 @@ >)───────────────────────────(128 ↵127 ↵)──()───(00:40:0000:40:12)──── @@ -200,16 +200,15 @@ const colorLabels = { SEPARATOR_COLOR: 'Separator Color', BORDCOL: 'Border Color', PATH_COLOR: 'Path Color', - RST: 'Reset Color (e.g. "on", "=")', }; // --- Hardcoded order for URL encoding/decoding stability --- const ENCODING_ORDERED_COLOR_KEYS = [ 'PRIMARY_COLOR', 'SECONDARY_COLOR', 'ROOT_COLOR', 'TIME_COLOR', - 'ERR_COLOR', 'SEPARATOR_COLOR', 'BORDCOL', 'PATH_COLOR', 'RST' + 'ERR_COLOR', 'SEPARATOR_COLOR', 'BORDCOL', 'PATH_COLOR' ]; -if (ENCODING_ORDERED_COLOR_KEYS.length !== 9) { - console.error("Encoding logic assumes 9 color keys. Please update bit packing if this changes."); +if (ENCODING_ORDERED_COLOR_KEYS.length !== 8) { + console.error("Encoding logic assumes 8 color keys. Please update bit packing if this changes."); }