コンピューターをセットアップして(Crunchbang Linux Waldorfおよびi3を実行)、常にデフォルトで、Ctrl + Shiftと矢印キーを押すと、矢印の方向に応じてウィンドウのサイズが変更されるように構成しようとしています。
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、セミコロンキーではなく、矢印キーを使用したいだけです。
私がそれをどうするかについての考えはありますか?