add blur to terminal with picom

This commit is contained in:
2024-10-21 19:35:20 +02:00
parent 239d8f7b12
commit a8118914a2
2 changed files with 13 additions and 2 deletions

View File

@@ -274,7 +274,18 @@ in
extraOptions = "experimental-features = nix-command flakes";
};
services.picom.enable = true;
services.picom = {
enable = true;
vSync = true;
settings = {
backend = "glx";
blur = {
method = "gaussian";
size = 10;
deviation = 5.0;
};
};
};
# systemd.services.background-image = {
# wantedBy = [ "multi-user.target" ];

View File

@@ -1,5 +1,5 @@
[window]
opacity = 0.7
opacity = 0.5
[window.class]
general = "Alacritty"