Saya mencoba mengatur komputer saya (menjalankan Crunchbang Linux Waldorf dan i3) sehingga selalu, secara default, dikonfigurasi sehingga menekan Ctrl + Shift dan tombol panah mengubah ukuran jendela sesuai dengan arah panah.
The panduan i3 pengguna memberikan contoh ini yang saya pikir sangat dekat dengan apa yang saya inginkan:
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"
Tapi saya ingin membangunnya secara native, tanpa harus masuk dan keluar dari mode resize. Saya hanya ingin menggunakan tombol panah, bukan tombol j, k, l dan titik koma.
Adakah pemikiran tentang bagaimana saya akan melakukan itu?
sumber