fully remove flavor and accent-specific catppuccin configs
This commit is contained in:
parent
679b37b1ea
commit
362df45987
15 changed files with 276 additions and 364 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
|
||||
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
|
||||
color_theme = "catppuccin_mocha.theme"
|
||||
color_theme = "catppuccin_blankFlavor.theme"
|
||||
|
||||
#* If the theme set background should be shown, set to False if you want terminal background transparency.
|
||||
theme_background = True
|
||||
|
|
|
|||
|
|
@ -10,11 +10,10 @@ let
|
|||
|
||||
mergedConfig = pkgs.runCommand "mergedConfig" { } ''
|
||||
mkdir -p $out/themes
|
||||
cp ${./btop.conf} $out/btop.conf
|
||||
cp ${catppuccin-btop}/themes/catppuccin_latte.theme $out/themes/
|
||||
cp ${catppuccin-btop}/themes/catppuccin_frappe.theme $out/themes/
|
||||
cp ${catppuccin-btop}/themes/catppuccin_macchiato.theme $out/themes/
|
||||
cp ${catppuccin-btop}/themes/catppuccin_mocha.theme $out/themes/
|
||||
${pkgs.gnused}/bin/sed 's/blankFlavor/${config.catppuccin.flavor}/g' \
|
||||
${./btop.conf} > $out/btop.conf
|
||||
cp ${catppuccin-btop}/themes/catppuccin_latte.theme $out/themes/
|
||||
cp ${catppuccin-btop}/themes/catppuccin_${config.catppuccin.flavor}.theme $out/themes/
|
||||
'';
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
enableGitIntegration = true;
|
||||
themeFile = "Catppuccin-Mocha";
|
||||
themeFile = "Catppuccin-${config.catppuccinUpper.flavor}";
|
||||
font = {
|
||||
name = "NotoSansM Nerd Font Mono";
|
||||
size = 10;
|
||||
|
|
@ -10,7 +12,6 @@
|
|||
shellIntegration = {
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
# extraConfig = "\nwheel_scroll_multiplier 5.0\nconfirm_os_window_close 0";
|
||||
settings = {
|
||||
scrollback_lines = 10000;
|
||||
enable_audio_bell = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.sessionVariables = {
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
flavour = "mocha";
|
||||
flavour = config.catppuccin.flavor;
|
||||
};
|
||||
};
|
||||
keymaps = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue