マイコンピュータ(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代わりに矢印キーを使用したいです;。
私がどうするかについてのアイデアはありますか?
答え1
私が思いついた最高のソリューションは次のとおりです。
に移動して~/.i3/config
ファイルを開きます。
最後に次のコードを貼り付けます。
bindsym $mod+Ctrl+Right resize shrink width 1 px or 1 ppt
bindsym $mod+Ctrl+Up resize grow height 1 px or 1 ppt
bindsym $mod+Ctrl+Down resize shrink height 1 px or 1 ppt
bindsym $mod+Ctrl+Left resize grow width 1 px or 1 ppt
保存して実行しますi3-msg reload
。
答え2
@Oposumに基づいています解決策、「クイックサイズ変更」を追加しました。
# Resizing windows by 10 in i3 using keyboard only
bindsym $mod+Ctrl+Shift+Right resize shrink width 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Up resize grow height 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Down resize shrink height 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Left resize grow width 10 px or 10 ppt
だから私の中には~/.i3/config
次のものがあります:
# Resizing windows in i3 using keyboard only
# https://unix.stackexchange.com/q/255344/150597
# Resizing by 1
bindsym $mod+Ctrl+Right resize shrink width 1 px or 1 ppt
bindsym $mod+Ctrl+Up resize grow height 1 px or 1 ppt
bindsym $mod+Ctrl+Down resize shrink height 1 px or 1 ppt
bindsym $mod+Ctrl+Left resize grow width 1 px or 1 ppt
# Resizing by 10
bindsym $mod+Ctrl+Shift+Right resize shrink width 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Up resize grow height 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Down resize shrink height 10 px or 10 ppt
bindsym $mod+Ctrl+Shift+Left resize grow width 10 px or 10 ppt
@Oposumが言ったように:i3($ mod + Shift + R)を保存して再起動します。