smallest change
This commit is contained in:
parent
4cca1dc327
commit
9c83ba6849
77 changed files with 36828 additions and 1516 deletions
|
|
@ -26,7 +26,7 @@ in {
|
|||
enable = true;
|
||||
|
||||
font = {
|
||||
name = "Cantarell";
|
||||
name = "Adwaita Sans";
|
||||
size = 11;
|
||||
};
|
||||
|
||||
|
|
|
|||
28
modules/home/rice/pywal/default.nix
Normal file
28
modules/home/rice/pywal/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.programs.pywal2;
|
||||
in {
|
||||
options = {programs.pywal2 = {enable = mkEnableOption "pywal";};};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [pkgs.pywal];
|
||||
|
||||
programs.zsh.initExtra = ''
|
||||
# Import colorscheme from 'wal' asynchronously
|
||||
# & # Run the process in the background.
|
||||
# ( ) # Hide shell job control messages.
|
||||
(cat ${config.xdg.cacheHome}/wal/sequences &)
|
||||
'';
|
||||
|
||||
programs.kitty.extraConfig = ''
|
||||
include ${config.xdg.cacheHome}/wal/colors-kitty.conf
|
||||
'';
|
||||
|
||||
programs.rofi.theme."@import" = "${config.xdg.cacheHome}/wal/colors-rofi-dark.rasi";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue