From 523e8f87a0d27759e69388aeab36a1222b0f3edf Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Thu, 8 Jan 2026 14:52:01 +0100 Subject: [PATCH] minor --- modules/aerospace.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/modules/aerospace.nix b/modules/aerospace.nix index 94e3374..b81b6a1 100644 --- a/modules/aerospace.nix +++ b/modules/aerospace.nix @@ -2,18 +2,14 @@ { home.file.".aerospace.toml".text = '' - # AeroSpace configuration - # Default to floating windows (like Hyprland) - - start-at-login = true - # Make all new windows floating by default [[on-window-detected]] run = ['layout floating'] [mode.main.binding] - # Toggle between floating and tiling alt-enter = 'layout floating tiling' + alt-f = 'fullscreen' + alt-q = 'close' # Window focus (vim-style) alt-h = 'focus left' @@ -52,11 +48,5 @@ alt-shift-7 = 'move-node-to-workspace 7' alt-shift-8 = 'move-node-to-workspace 8' alt-shift-9 = 'move-node-to-workspace 9' - - # Fullscreen - alt-f = 'fullscreen' - - # Close window - alt-q = 'close' ''; }