134 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
# options commands : https://nikitabobko.github.io/AeroSpace/commands
 | 
						|
after-startup-command = []
 | 
						|
start-at-login = true # start aerospace at login
 | 
						|
 | 
						|
# ref: https://nikitabobko.github.io/AeroSpace/guide#normalization
 | 
						|
enable-normalization-flatten-containers = true
 | 
						|
enable-normalization-opposite-orientation-for-nested-containers = true
 | 
						|
 | 
						|
accordion-padding = 0 # ref: https://nikitabobko.github.io/AeroSpace/guide#layouts
 | 
						|
 | 
						|
default-root-container-layout = 'accordion' # tiles|accordion
 | 
						|
default-root-container-orientation = 'vertical' # horizontal|vertical|auto
 | 
						|
 | 
						|
# refs: https://nikitabobko.github.io/AeroSpace/guide#on-focus-changed-callbacks
 | 
						|
#       https://nikitabobko.github.io/AeroSpace/commands#move-mouse
 | 
						|
on-focused-monitor-changed = ['move-mouse monitor-lazy-center']
 | 
						|
 | 
						|
# ref: https://nikitabobko.github.io/AeroSpace/goodies#disable-hide-app
 | 
						|
automatically-unhide-macos-hidden-apps = true
 | 
						|
 | 
						|
# See https://nikitabobko.github.io/AeroSpace/guide#key-mapping
 | 
						|
[key-mapping]
 | 
						|
    preset = 'qwerty' # qwerty|dvorak|colemak
 | 
						|
 | 
						|
# ref: https://nikitabobko.github.io/AeroSpace/guide#assign-workspaces-to-monitors
 | 
						|
# gaps between windows (inner-*) and between monitor edges (outer-*).
 | 
						|
[gaps]
 | 
						|
    inner.horizontal = 0
 | 
						|
    inner.vertical =   0
 | 
						|
    outer.left =       0
 | 
						|
    outer.bottom =     0
 | 
						|
    outer.top =        0
 | 
						|
    outer.right =      0
 | 
						|
 | 
						|
# 'main' binding mode; ref: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
 | 
						|
[mode.main.binding] # 'main' binding mode must be always presented
 | 
						|
    # All possible keys:
 | 
						|
    # - Letters.        a, b, c, ..., z
 | 
						|
    # - Numbers.        0, 1, 2, ..., 9
 | 
						|
    # - Keypad numbers. keypad0, keypad1, keypad2, ..., keypad9
 | 
						|
    # - F-keys.         f1, f2, ..., f20
 | 
						|
    # - Special keys.   minus, equal, period, comma, slash, backslash, quote, semicolon,
 | 
						|
    #                   backtick, leftSquareBracket, rightSquareBracket, space, enter, esc,
 | 
						|
    #                   backspace, tab, pageUp, pageDown, home, end, forwardDelete,
 | 
						|
    #                   sectionSign (ISO keyboards only, european keyboards only)
 | 
						|
    # - Keypad special. keypadClear, keypadDecimalMark, keypadDivide, keypadEnter, keypadEqual,
 | 
						|
    #                   keypadMinus, keypadMultiply, keypadPlus
 | 
						|
    # - Arrows.         left, down, up, right
 | 
						|
 | 
						|
    # All possible modifiers: cmd, alt, ctrl, shift
 | 
						|
    # All possible commands: https://nikitabobko.github.io/AeroSpace/commands
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#exec-and-forget
 | 
						|
    # You can uncomment the following lines to open up terminal with alt + enter shortcut
 | 
						|
    # (like in i3)
 | 
						|
    # alt-enter = '''exec-and-forget osascript -e '
 | 
						|
    # tell application "Terminal"
 | 
						|
    #     do script
 | 
						|
    #     activate
 | 
						|
    # end tell'
 | 
						|
    # '''
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#layout
 | 
						|
    alt-comma = 'layout v_accordion'
 | 
						|
    alt-period = 'layout h_tiles'
 | 
						|
    alt-slash = 'layout horizontal vertical'
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#focus
 | 
						|
    # new windows are added to the stack "below" the current, so swap up and down
 | 
						|
    alt-j = 'focus up'
 | 
						|
    alt-k = 'focus down'
 | 
						|
    # bindings: alt-l -> ctrl-tab, alt-h -> ctrl-shift-tab
 | 
						|
    # alt-l = "exec-and-forget osascript -e 'tell application \"System Events\" to key code 48 using control down'"
 | 
						|
    # alt-h = "exec-and-forget osascript -e 'tell application \"System Events\" to key code 48 using {control down, shift down}'"
 | 
						|
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#move
 | 
						|
    # new windows are added to the stack "below" the current, so swap up and down
 | 
						|
    alt-shift-j = 'move up'
 | 
						|
    alt-shift-k = 'move down'
 | 
						|
    alt-shift-h = 'move left'
 | 
						|
    alt-shift-l = 'move right'
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#resize
 | 
						|
    alt-minus = 'resize smart -50'
 | 
						|
    alt-equal = 'resize smart +50'
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#workspace
 | 
						|
    alt-1 = 'workspace 1'
 | 
						|
    alt-2 = 'workspace 2'
 | 
						|
    alt-3 = 'workspace 3'
 | 
						|
    alt-4 = 'workspace 4'
 | 
						|
    alt-5 = 'workspace 5'
 | 
						|
    alt-6 = 'workspace 6'
 | 
						|
    alt-7 = 'workspace 7'
 | 
						|
    alt-8 = 'workspace 8'
 | 
						|
    alt-9 = 'workspace 9'
 | 
						|
    alt-0 = 'workspace 0'
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#move-node-to-workspace
 | 
						|
    alt-shift-1 = 'move-node-to-workspace 1'
 | 
						|
    alt-shift-2 = 'move-node-to-workspace 2'
 | 
						|
    alt-shift-3 = 'move-node-to-workspace 3'
 | 
						|
    alt-shift-4 = 'move-node-to-workspace 4'
 | 
						|
    alt-shift-5 = 'move-node-to-workspace 5'
 | 
						|
    alt-shift-6 = 'move-node-to-workspace 6'
 | 
						|
    alt-shift-7 = 'move-node-to-workspace 7'
 | 
						|
    alt-shift-8 = 'move-node-to-workspace 8'
 | 
						|
    alt-shift-9 = 'move-node-to-workspace 9'
 | 
						|
    alt-shift-0 = 'move-node-to-workspace 0'
 | 
						|
 | 
						|
    # See: https://nikitabobko.github.io/AeroSpace/commands#mode
 | 
						|
    alt-shift-semicolon = 'mode service'
 | 
						|
 | 
						|
# 'service' binding mode declaration.
 | 
						|
# See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
 | 
						|
[mode.service.binding]
 | 
						|
    esc = ['reload-config', 'mode main']
 | 
						|
    backspace = ['close-all-windows-but-current', 'mode main']
 | 
						|
 | 
						|
    r = ['flatten-workspace-tree', 'mode main'] # reset layout
 | 
						|
    f = ['flatten-workspace-tree', 'layout floating', 'mode main']
 | 
						|
    s = ['flatten-workspace-tree', 'layout v_accordion', 'mode main']
 | 
						|
    g = ['flatten-workspace-tree', 'layout h_tiles', 'mode main']
 | 
						|
 | 
						|
    alt-shift-h = ['join-with left', 'mode main']
 | 
						|
    alt-shift-j = ['join-with down', 'mode main']
 | 
						|
    alt-shift-k = ['join-with up', 'mode main']
 | 
						|
    alt-shift-l = ['join-with right', 'mode main']
 | 
						|
 | 
						|
    down = 'volume down'
 | 
						|
    up = 'volume up'
 | 
						|
    shift-down = ['volume set 0', 'mode main']
 |