Redimensionnement des fenêtres dans i3 à l'aide du clavier uniquement


20

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?

Réponses:


13

Meilleure solution que j'ai trouvée moi-même:

Accédez à ~/.i3/configet ouvrez le fichier.

Collez le code suivant à la fin:

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

Enregistrez-le et redémarrez i3.


4

Sur la base de la solution @ Oposum , j'ai ajouté un "redimensionnement rapide":

# 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

Donc dans mon ~/.i3/configj'ai:

# Resizing windows in i3 using keyboard only
# /unix//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

Comme l'a dit @Oposum: enregistrez-le et redémarrez i3 ($ mod + Shift + R).


1
Vous avez les mêmes liaisons là-bas.
cprn

1
@cprn C'est vrai! Corrigé
aloisdg dit Réintégrer Monica le
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.