Ctrl + Shift와 화살표 키를 누르면 화살표 방향에 따라 창 크기가 조정되도록 항상 기본적으로 구성되도록 내 컴퓨터를 설정하려고합니다 (Crunchbang Linux Waldorf 및 i3 실행).
I3 사용자 가이드는 내가 아주 가까이 내가 원하는 것에 생각이 예제를 제공합니다 :
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the window’s width.
# Pressing right will grow the window’s width.
# Pressing up will shrink the window’s height.
# Pressing down will grow the window’s height.
bindsym j resize shrink width 10 px or 10 ppt
bindsym k resize grow height 10 px or 10 ppt
bindsym l resize shrink height 10 px or 10 ppt
bindsym semicolon resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Enter resize mode
bindsym $mod+r mode "resize"
그러나 크기 조정 모드를 시작하거나 종료하지 않고 기본적으로 빌드하고 싶습니다. j, k, l 및 세미콜론 키가 아닌 화살표 키를 사용하고 싶습니다.
내가 어떻게 할 것인지에 대한 생각?