wayfire: remove optional toString (#1658)
Link: https://github.com/nix-community/stylix/pull/1658 Reviewed-by: 1444 <54070204+0x5a4@users.noreply.github.com> Tested-by: 1444 <54070204+0x5a4@users.noreply.github.com>
This commit is contained in:
parent
05752c77ac
commit
a950a3f529
2 changed files with 6 additions and 6 deletions
|
|
@ -33,13 +33,13 @@ mkTarget {
|
|||
{
|
||||
wayland.windowManager.wayfire.settings = {
|
||||
cube = {
|
||||
cubemap_image = lib.mkIf cfg.useWallpaper (toString wayfireBackground);
|
||||
skydome_texture = lib.mkIf cfg.useWallpaper (toString wayfireBackground);
|
||||
cubemap_image = lib.mkIf cfg.useWallpaper wayfireBackground;
|
||||
skydome_texture = lib.mkIf cfg.useWallpaper wayfireBackground;
|
||||
};
|
||||
};
|
||||
|
||||
wayland.windowManager.wayfire.wf-shell.settings = {
|
||||
background.image = lib.mkIf cfg.useWallpaper (toString wayfireBackground);
|
||||
background.image = lib.mkIf cfg.useWallpaper wayfireBackground;
|
||||
background.fill_mode =
|
||||
if imageScalingMode == "stretch" then
|
||||
"stretch"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue