Fix: true color support in tmux and over SSH
This commit is contained in:
parent
b7129198eb
commit
8f7fad32c2
@ -1,6 +1,7 @@
|
|||||||
set -g clock-mode-style 12
|
set -g clock-mode-style 12
|
||||||
set -g default-command "${SHELL}"
|
set -g default-command "${SHELL}"
|
||||||
set -g default-terminal "tmux-256color"
|
set -g default-terminal "tmux-256color"
|
||||||
|
set -as terminal-features ",xterm-256color:RGB"
|
||||||
set -g history-limit 10000
|
set -g history-limit 10000
|
||||||
set -g prefix C-q
|
set -g prefix C-q
|
||||||
set -sg escape-time 25
|
set -sg escape-time 25
|
||||||
|
@ -11,5 +11,5 @@ UsePAM yes
|
|||||||
AllowTcpForwarding yes
|
AllowTcpForwarding yes
|
||||||
X11Forwarding yes
|
X11Forwarding yes
|
||||||
PrintMotd no
|
PrintMotd no
|
||||||
AcceptEnv LANG LC_*
|
AcceptEnv LANG LC_* COLORTERM
|
||||||
Subsystem sftp /usr/lib/openssh/sftp-server
|
Subsystem sftp /usr/lib/openssh/sftp-server
|
||||||
|
15
utils/truecolor-test
Executable file
15
utils/truecolor-test
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# https://github.com/termstandard/colors
|
||||||
|
awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{
|
||||||
|
s="/\\";
|
||||||
|
for (colnum = 0; colnum<term_cols; colnum++) {
|
||||||
|
r = 255-(colnum*255/term_cols);
|
||||||
|
g = (colnum*510/term_cols);
|
||||||
|
b = (colnum*255/term_cols);
|
||||||
|
if (g>255) g = 510-g;
|
||||||
|
printf "\033[48;2;%d;%d;%dm", r,g,b;
|
||||||
|
printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
|
||||||
|
printf "%s\033[0m", substr(s,colnum%2+1,1);
|
||||||
|
}
|
||||||
|
printf "\n";
|
||||||
|
}'
|
Loading…
x
Reference in New Issue
Block a user