diff options
author | ensa <psii@riseup.net> | 2020-06-26 17:04:50 -0700 |
---|---|---|
committer | ensa <psii@riseup.net> | 2020-06-26 17:04:50 -0700 |
commit | a11f7c357236afea1b00df5f85dc8674f5f1d661 (patch) | |
tree | dfc5c2c7617709ee29803897ce24acd06c71b2e4 /config/ksh | |
parent | 310c76b161e680a698995d61b2a741a05b384fbe (diff) | |
download | cfg-a11f7c357236afea1b00df5f85dc8674f5f1d661.tar.gz |
improved lh, switched to catgirl
bin/ lh: now resolves link shorteners first, so web browser is used less catgirl-open.sh: uses tabbed with xterm to put multiple catgirl clients on one "window" comm-sel: now uses catgirl-open.sh instead of epic5 in xterm cordless specifies config dir so non-standard config locations will work added different x class flags for different TERMINAL values config/ cwmrc: removed St and tabbed from autogroups, added tabbed-surf things generally fixed to accommodate for xterm ALTSCR removed $SCR invocations now include -u to hide the cursor window force-killing uses non-old $() syntax ksh/prompt.ksh: uses unicode halfbar instead of powerline triangles clears formatting at start of PS1 before coloring things
Diffstat (limited to 'config/ksh')
-rw-r--r-- | config/ksh/prompt.ksh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/ksh/prompt.ksh b/config/ksh/prompt.ksh index c56d441..6ef4c34 100644 --- a/config/ksh/prompt.ksh +++ b/config/ksh/prompt.ksh @@ -1,6 +1,6 @@ #!/bin/ksh -SEP="" -RSEP="" +SEP="▍" +RSEP="▐" #_PS1='\[\033['; #_END='m\]'; #_CLEAR=0; _FG_BLACK=30; _BG_BLACK=40 @@ -17,4 +17,4 @@ vcs() { printf ' %s' "$_GIT_BRANCH" fi } -PS1='\[\033[7;32m\]$?\[\033[0;32;45m\]$SEP\[\033[0;7;35m\]\A$RSEP\[\033[0;1;31m\]\u\[\033[0;32m\]@\[\033[1;34m\]\h\[\033[7;36m\]$SEP\[\033[7m\]\w$RSEP\[\033[0;32m\]$(vcs)\n\[\033[0;32m\]\$\[\033[0m\] ' +PS1='\[\033[0;7;32m\]$?\[\033[0;32;45m\]$SEP\[\033[0;7;35m\]\A$RSEP\[\033[0;1;31m\]\u\[\033[0;32m\]@\[\033[1;34m\]\h\[\033[7;36m\]$SEP\[\033[7m\]\w$RSEP\[\033[0;32m\]$(vcs)\n\[\033[0;32m\]\$\[\033[0m\] ' |