From 0f2a3b7a13ccc05a16ca277670675e99e9695b1b Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 6 Sep 2024 21:37:14 +0200 Subject: [PATCH] some niri update --- modules/niri/niri.conf.nix | 2 +- modules/niri/xwl-satellite.service.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/niri/niri.conf.nix b/modules/niri/niri.conf.nix index 405e35f..a67ac97 100644 --- a/modules/niri/niri.conf.nix +++ b/modules/niri/niri.conf.nix @@ -68,7 +68,7 @@ in { default-column-width = { proportion = 0.5; }; - gaps = 2; + gaps = 4; struts = { top = 2; }; diff --git a/modules/niri/xwl-satellite.service.nix b/modules/niri/xwl-satellite.service.nix index 0b49fee..01ccc64 100644 --- a/modules/niri/xwl-satellite.service.nix +++ b/modules/niri/xwl-satellite.service.nix @@ -2,7 +2,7 @@ inherit (lib) mkIf; inherit (config) conf; in mkIf conf.niri.enable { - environment.systemPackages = with pkgs; [ xwayland-satellite xwayland ]; + environment.systemPackages = with pkgs; [ xwayland-satellite-unstable xwayland ]; systemd.user.services.xwayland-satellite = { description = "Xwayland outside your Wayland"; @@ -19,7 +19,7 @@ in mkIf conf.niri.enable { StandardOutput = "journal"; Restart = "on-failure"; - RestartSec = "2s"; + RestartSec = "1s"; }; }; }