theming cli apps
This commit is contained in:
parent
fbd4f0326a
commit
620839c418
|
@ -1,5 +1,30 @@
|
|||
{
|
||||
programs.cmus = {
|
||||
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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -138,8 +138,8 @@
|
|||
color background color15 color0
|
||||
color listnormal color15 color0
|
||||
color listnormal_unread color15 color0 bold
|
||||
color listfocus color15 color4
|
||||
color listfocus_unread color15 color4 bold
|
||||
color listfocus color4 color8
|
||||
color listfocus_unread color4 color8 bold
|
||||
color info color15 color8
|
||||
color article color15 color0
|
||||
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
enable = true;
|
||||
extraConfig = ''
|
||||
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"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue