J'essaie de configurer mon ordinateur (exécutant Crunchbang Linux Waldorf et i3) afin qu'il soit toujours, par défaut, configuré de sorte qu'en appuyant sur Ctrl + Maj et sur les touches fléchées, la fenêtre soit redimensionnée selon la direction des flèches.
Le guide de l'utilisateur i3 fournit cet exemple qui, je pense, est très proche de ce que je veux:
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"
Mais je veux le construire en natif, sans avoir à entrer et sortir des modes de redimensionnement. Je veux juste utiliser les touches fléchées, pas les touches j, k, l et point-virgule.
Des réflexions sur la façon dont je ferais ça?