Compare commits
2 Commits
5b234344bc
...
8265783f7b
| Author | SHA1 | Date | |
|---|---|---|---|
|
8265783f7b
|
|||
|
f893dfa19b
|
@ -31,19 +31,19 @@ in {
|
|||||||
theme[title]=${color.hexS.text}
|
theme[title]=${color.hexS.text}
|
||||||
|
|
||||||
# Highlight color for keyboard shortcuts
|
# Highlight color for keyboard shortcuts
|
||||||
theme[hi_fg]=${color.hexS.blue}
|
theme[hi_fg]=${color.hexS.accent}
|
||||||
|
|
||||||
# Background color of selected item in processes box
|
# Background color of selected item in processes box
|
||||||
theme[selected_bg]=${color.hexS.surface1}
|
theme[selected_bg]=${color.hexS.surface1}
|
||||||
|
|
||||||
# Foreground color of selected item in processes box
|
# Foreground color of selected item in processes box
|
||||||
theme[selected_fg]=${color.hexS.blue}
|
theme[selected_fg]=${color.hexS.accent}
|
||||||
|
|
||||||
# Color of inactive/disabled text
|
# Color of inactive/disabled text
|
||||||
theme[inactive_fg]=${color.hexS.overlay1}
|
theme[inactive_fg]=${color.hexS.overlay1}
|
||||||
|
|
||||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||||
theme[graph_text]=${color.hexS.rosewater}
|
theme[graph_text]=${color.hexS.overlay0}
|
||||||
|
|
||||||
# Background color of the percentage meters
|
# Background color of the percentage meters
|
||||||
theme[meter_bg]=${color.hexS.surface1}
|
theme[meter_bg]=${color.hexS.surface1}
|
||||||
|
|||||||
@ -13,7 +13,7 @@ in {
|
|||||||
|
|
||||||
config = lib.mkIf fish.enable {
|
config = lib.mkIf fish.enable {
|
||||||
# https://github.com/catppuccin/fish/blob/main/themes/Catppuccin%20Mocha.theme
|
# https://github.com/catppuccin/fish/blob/main/themes/Catppuccin%20Mocha.theme
|
||||||
home.file.".config/fish/themes/catppuccin-latte.theme".text = ''
|
home.file.".config/fish/themes/system-theme.theme".text = ''
|
||||||
fish_color_normal ${color.hex.text}
|
fish_color_normal ${color.hex.text}
|
||||||
fish_color_command ${color.hex.blue}
|
fish_color_command ${color.hex.blue}
|
||||||
fish_color_param ${color.hex.flamingo}
|
fish_color_param ${color.hex.flamingo}
|
||||||
@ -87,24 +87,11 @@ in {
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = [
|
plugins = [];
|
||||||
# Oh-my-fish plugins are stored in their own repositories, which
|
|
||||||
# makes them simple to import into home-manager.
|
|
||||||
# NOTE: Currently, HM ignores theme plugins
|
|
||||||
# {
|
|
||||||
# name = "Catppuccin Latte";
|
|
||||||
# src = pkgs.fetchFromGitHub {
|
|
||||||
# owner = "catppuccin";
|
|
||||||
# repo = "fish";
|
|
||||||
# rev = "91e6d6721362be05a5c62e235ed8517d90c567c9";
|
|
||||||
# sha256 = "sha256-l9V7YMfJWhKDL65dNbxaddhaM6GJ0CFZ6z+4R6MJwBA=";
|
|
||||||
# };
|
|
||||||
# }
|
|
||||||
];
|
|
||||||
|
|
||||||
shellInit = ''
|
shellInit = ''
|
||||||
set -e fish_greeting
|
set fish_greeting
|
||||||
yes | fish_config theme save "catppuccin-latte"
|
yes | fish_config theme save "system-theme"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAbbrs = let
|
shellAbbrs = let
|
||||||
|
|||||||
Reference in New Issue
Block a user