From 6b4eb3374b1cfb3a59bb74a1f70db8959b99fa2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Fri, 5 Aug 2022 21:52:39 -0600 Subject: [PATCH] =?UTF-8?q?oculta=20bordes=20y=20cambia=20relaci=C3=B3n=20?= =?UTF-8?q?workspace/output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/desktop/i3.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/home/desktop/i3.nix b/home/desktop/i3.nix index ec1d6f5..1a688e9 100644 --- a/home/desktop/i3.nix +++ b/home/desktop/i3.nix @@ -21,6 +21,11 @@ outer = -10; }; + window = { + hideEdgeBorders = "both"; + titlebar = false; + }; + # mkOptionDefault hace que se ponga la config por default # y se sobreescriba las cosas que pongo acA # NO QUITARLO. ver man home-configuration.nix @@ -29,6 +34,7 @@ "${mod}+Tab" = "focus right"; "${mod}+Shift+Tab" = "focus left"; "${mod}+Shift+s" = "exec ${pkgs.maim}/bin/maim -s -u | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png -i"; + "${mod}+Shift+w" = "move workspace to output right"; }; # menu = "${pkgs.dmenu}/bin/dmenu_run" @@ -57,6 +63,17 @@ command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace $ws1; exec ${pkgs.signal-desktop}/bin/signal-desktop'"; } ]; + + workspaceOutputAssign = [ + { + output = "DisplayPort-0"; + workspace = "$ws1"; + } + { + output = "DisplayPort-1"; + workspace = "$ws10"; + } + ]; bars = [ ]; };