Sto cercando di configurare il mio computer (eseguendo Crunchbang Linux Waldorf e i3) in modo che sia sempre, per impostazione predefinita, configurato in modo tale che premendo Ctrl + Maiusc e i tasti freccia ridimensioni la finestra in base alla direzione delle frecce.
La guida per l'utente i3 fornisce questo esempio che penso sia molto vicino a ciò che voglio:
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"
Ma voglio costruirlo in modo nativo, senza dover entrare e uscire dalle modalità di ridimensionamento. Voglio solo usare i tasti freccia, non i tasti j, k, le punti e virgola.
Qualche idea su come lo farei?