This commit is contained in:
Yan Lin 2026-01-08 14:52:01 +01:00
parent 5892509afb
commit 523e8f87a0

View file

@ -2,18 +2,14 @@
{ {
home.file.".aerospace.toml".text = '' home.file.".aerospace.toml".text = ''
# AeroSpace configuration
# Default to floating windows (like Hyprland)
start-at-login = true
# Make all new windows floating by default # Make all new windows floating by default
[[on-window-detected]] [[on-window-detected]]
run = ['layout floating'] run = ['layout floating']
[mode.main.binding] [mode.main.binding]
# Toggle between floating and tiling
alt-enter = 'layout floating tiling' alt-enter = 'layout floating tiling'
alt-f = 'fullscreen'
alt-q = 'close'
# Window focus (vim-style) # Window focus (vim-style)
alt-h = 'focus left' alt-h = 'focus left'
@ -52,11 +48,5 @@
alt-shift-7 = 'move-node-to-workspace 7' alt-shift-7 = 'move-node-to-workspace 7'
alt-shift-8 = 'move-node-to-workspace 8' alt-shift-8 = 'move-node-to-workspace 8'
alt-shift-9 = 'move-node-to-workspace 9' alt-shift-9 = 'move-node-to-workspace 9'
# Fullscreen
alt-f = 'fullscreen'
# Close window
alt-q = 'close'
''; '';
} }