Add extra stylix theming

This commit is contained in:
Evie Litherland-Smith 2023-09-28 08:27:03 +01:00
parent 1134f79dc7
commit 4c62219dde
4 changed files with 10 additions and 15 deletions

View file

@ -118,6 +118,10 @@
image = ./wallpapers/waves/cat-waves.png; image = ./wallpapers/waves/cat-waves.png;
base16Scheme = base16Scheme =
"${inputs.catppuccin-base16}/base16/macchiato.yaml"; "${inputs.catppuccin-base16}/base16/macchiato.yaml";
targets = {
console.enable = true;
grub.enable = true;
};
}; };
nix = { nix = {
settings = { settings = {
@ -216,6 +220,7 @@
++ homeModules; ++ homeModules;
home = { inherit username homeDirectory stateVersion; }; home = { inherit username homeDirectory stateVersion; };
programs.home-manager.enable = true; programs.home-manager.enable = true;
stylix.targets.xresources.enable = true;
xdg.userDirs = { xdg.userDirs = {
enable = true; enable = true;
createDirectories = true; createDirectories = true;

View file

@ -1,24 +1,11 @@
{ ... }: { ... }:
{ {
stylix.targets.fzf.enable = true;
programs.fzf = { programs.fzf = {
enable = true; enable = true;
enableBashIntegration = true; enableBashIntegration = true;
enableZshIntegration = true; enableZshIntegration = true;
colors = {
fg = "#cad3f5";
bg = "#24273a";
hl = "#ed8796";
"fg+" = "#c678dd";
"bg+" = "#363a4f";
"hl+" = "#ed8796";
info = "#c6a0f6";
prompt = "#c6a0f6";
pointer = "#f4dbd6";
marker = "#f4dbd6";
spinner = "#f4dbd6";
header = "#ed8796";
};
}; };
} }

View file

@ -164,6 +164,9 @@ in ''
windowrule = pin,(wlogout) windowrule = pin,(wlogout)
windowrule = dimaround,(wlogout) windowrule = dimaround,(wlogout)
windowrule = stayfocused,(wlogout) windowrule = stayfocused,(wlogout)
windowrule = pin,(Rofi)
windowrule = dimaround,(Rofi)
windowrule = stayfocused,(Rofi)
windowrule = nofullscreenrequest,(Nxplayer.bin) windowrule = nofullscreenrequest,(Nxplayer.bin)
windowrule = nomaximizerequest,(Nxplayer.bin) windowrule = nomaximizerequest,(Nxplayer.bin)
windowrulev2 = float,title:(File|Picture-in-Picture),class:(firefox) windowrulev2 = float,title:(File|Picture-in-Picture),class:(firefox)

View file

@ -1,6 +1,7 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
{ {
stylix.targets.rofi.enable = true;
programs.rofi = { programs.rofi = {
enable = true; enable = true;
location = "center"; location = "center";
@ -18,6 +19,5 @@
disable-history = false; disable-history = false;
hide-scrollbar = true; hide-scrollbar = true;
}; };
theme = ./theme.rasi;
}; };
} }