cmus
This commit is contained in:
parent
cfd1fd1cd8
commit
72e45f5fdf
|
@ -202,11 +202,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1728496578,
|
||||
"narHash": "sha256-uwiSN3BdC3/5pFfbyFqwU/ntj+8lWofrPC64sssHl4k=",
|
||||
"lastModified": 1728501535,
|
||||
"narHash": "sha256-iJSJXkjFZXDuMZNUvJ76HXRQirD04e+qKiBXfsFnpAk=",
|
||||
"owner": "joygnu",
|
||||
"repo": "home-manager",
|
||||
"rev": "da950ac376f2fd4f1e28aae3a55451969ec19ed9",
|
||||
"rev": "0825c4646b2d7f97c47e3878c676a84a5ca1f753",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
62
modules/apps/home/cmus/default.nix
Normal file
62
modules/apps/home/cmus/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
programs.cmus = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
colorscheme gruvbox
|
||||
'';
|
||||
theme = {
|
||||
name = "gruvbox";
|
||||
text = ''
|
||||
# colors from gruvbox: https://github.com/morhetz/gruvbox
|
||||
# default text color
|
||||
set color_win_fg=default
|
||||
|
||||
# overall background color
|
||||
set color_win_bg=default
|
||||
|
||||
# command-line colors
|
||||
set color_cmdline_bg=default
|
||||
set color_cmdline_fg=default
|
||||
set color_error=124
|
||||
set color_info=172
|
||||
set color_separator=246
|
||||
|
||||
# bottom status line
|
||||
set color_statusline_bg=237
|
||||
set color_statusline_fg=72
|
||||
|
||||
# bottom title line
|
||||
set color_titleline_bg=236
|
||||
set color_titleline_fg=142
|
||||
|
||||
# top title area
|
||||
set color_win_title_bg=246
|
||||
set color_win_title_fg=235
|
||||
##### playing file colors ######################################################
|
||||
# unselected currently playing track's text
|
||||
set color_win_cur=175
|
||||
|
||||
# active selection for currently playing track
|
||||
set color_win_cur_sel_bg=237
|
||||
set color_win_cur_sel_fg=175
|
||||
|
||||
# inactive selection for currently playing track
|
||||
set color_win_inactive_cur_sel_bg=236
|
||||
set color_win_inactive_cur_sel_fg=175
|
||||
|
||||
##### non-playing file colors ##################################################
|
||||
# active selection
|
||||
set color_win_sel_bg=237
|
||||
set color_win_sel_fg=229
|
||||
|
||||
# inactive selection
|
||||
set color_win_inactive_sel_bg=236
|
||||
set color_win_inactive_sel_fg=229
|
||||
|
||||
##### file browser view colors #################################################
|
||||
# directory listing color
|
||||
set color_win_dir=229
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
|
@ -10,5 +10,6 @@
|
|||
./zsh
|
||||
./zoxide
|
||||
./bat
|
||||
./cmus
|
||||
];
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
zip
|
||||
unzip
|
||||
yt-dlp
|
||||
wget
|
||||
#gui
|
||||
imv
|
||||
keepassxc
|
||||
|
|
Loading…
Reference in a new issue