mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-18 09:53:06 +01:00
feat(modules/home): make gnome application blur configurable
This commit is contained in:
parent
3a5bc24170
commit
636d384150
1 changed files with 4 additions and 1 deletions
|
@ -38,6 +38,9 @@ in
|
||||||
description = "Specify when Unite should hide window titlebars.";
|
description = "Specify when Unite should hide window titlebars.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
blur-my-shell = {
|
||||||
|
enable-blur = mkOpt bool true "Whether to enable blur-my-shell application blur.";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
wallpaper = mkOpt str (builtins.toString ./wallpapers/rocket-launch.jpg) "Specify the path of your prefered Gnome wallpaper.";
|
wallpaper = mkOpt str (builtins.toString ./wallpapers/rocket-launch.jpg) "Specify the path of your prefered Gnome wallpaper.";
|
||||||
};
|
};
|
||||||
|
@ -67,7 +70,7 @@ in
|
||||||
autofocus-windows = true;
|
autofocus-windows = true;
|
||||||
notifications-position = "right";
|
notifications-position = "right";
|
||||||
};
|
};
|
||||||
"org/gnome/shell/extensions/blur-my-shell/applications" = {
|
"org/gnome/shell/extensions/blur-my-shell/applications" = mkIf cfg.extensions.blur-my-shell.enable-blur {
|
||||||
blur = true;
|
blur = true;
|
||||||
sigma = 30;
|
sigma = 30;
|
||||||
opacity = 230;
|
opacity = 230;
|
||||||
|
|
Loading…
Reference in a new issue