theming cli apps

This commit is contained in:
joy 2024-10-11 14:40:50 +02:00
parent fbd4f0326a
commit 620839c418
3 changed files with 32 additions and 2 deletions

View file

@ -1,5 +1,30 @@
{ {
programs.cmus = { programs.cmus = {
enable = true; enable = true;
extraConfig = ''
set color_win_fg=15
set color_win_bg=0
set color_win_title_bg=0
set color_win_title_fg=15
set color_separator=4
set color_titleline_bg=0
set color_titleline_fg=15
set color_statusline_bg=8
set color_statusline_fg=15
set color_cmdline_bg=0
set color_cmdline_fg=15
set color_error=167
set color_info=214
set color_win_cur=4
set color_win_cur_sel_bg=8
set color_win_cur_sel_fg=4
set color_win_inactive_cur_sel_bg=0
set color_win_inactive_cur_sel_fg=4
set color_win_sel_bg=8
set color_win_sel_fg=15
set color_win_inactive_sel_bg=0
set color_win_inactive_sel_fg=15
set color_win_dir=15
'';
}; };
} }

View file

@ -138,8 +138,8 @@
color background color15 color0 color background color15 color0
color listnormal color15 color0 color listnormal color15 color0
color listnormal_unread color15 color0 bold color listnormal_unread color15 color0 bold
color listfocus color15 color4 color listfocus color4 color8
color listfocus_unread color15 color4 bold color listfocus_unread color4 color8 bold
color info color15 color8 color info color15 color8
color article color15 color0 color article color15 color0

View file

@ -3,6 +3,11 @@
enable = true; enable = true;
extraConfig = '' extraConfig = ''
set-option -g status off set-option -g status off
# Ensure tmux uses 256 colors
set -g default-terminal "tmux-256color"
# Enable true colors (24-bit color) in tmux
set-option -ga terminal-overrides ",xterm-256color:Tc"
''; '';
}; };
} }