I3wm : Différence entre versions
De Disposition de clavier francophone et ergonomique bépo
m (I3 → i3) |
(Corrections orthographiques, traduction de certaines terminologies et desktop -> workspace) |
||
Ligne 5 : | Ligne 5 : | ||
== Résumé des adaptations pour bépo == | == Résumé des adaptations pour bépo == | ||
− | Les commandes par défaut ne sont pas | + | Les commandes par défaut ne sont pas adaptées au bépo, il y a beaucoup de combinaisons à faire avec la main gauche uniquement, j'ai essayé de répartir les contraintes sur les 2 mains. Les gros changements: |
* Utilisation des touches "tsrn" pour les déplacements en tout genre. | * Utilisation des touches "tsrn" pour les déplacements en tout genre. | ||
− | * Je n'utilise en général pas plus de 5 | + | * Je n'utilise en général pas plus de 5 workspace, alors j'ai utilisé les touches de 6 à 0 en plus des touches de 1 à 5 pour changer de workspace. |
− | * les modifications de layout : | + | * les modifications de disposition ("layout") : |
− | ** win+g : | + | ** win+g : séparation verticale ("vertical split") |
− | ** win+q : | + | ** win+q : séparation horizontale ("horizontal split") |
− | ** win+c : tabbed | + | ** win+c : mode onglet ("tabbed") |
− | * Win+^ : sélectionner le | + | * Win+^ : sélectionner le conteneur parent |
− | * Win+' : sélectionner le | + | * Win+' : sélectionner le conteneur fils |
− | * Win+m : pour activer le mode resize, touche "Entrer" ou " | + | * Win+m : pour activer le mode "resize", touche "Entrer" ou "Échap" pour valider. |
− | * Win+f : | + | * Win+f : Plein écran |
− | + | ||
== Configuration a ajouter/remplacer == | == Configuration a ajouter/remplacer == | ||
Version du 15 janvier 2022 à 16:16
i3wm est un gestionnaire de fenêtres libre. Son objectif est de rester très léger, simple et entièrement contrôlable au clavier.
Résumé des adaptations pour bépo
Les commandes par défaut ne sont pas adaptées au bépo, il y a beaucoup de combinaisons à faire avec la main gauche uniquement, j'ai essayé de répartir les contraintes sur les 2 mains. Les gros changements:
- Utilisation des touches "tsrn" pour les déplacements en tout genre.
- Je n'utilise en général pas plus de 5 workspace, alors j'ai utilisé les touches de 6 à 0 en plus des touches de 1 à 5 pour changer de workspace.
- les modifications de disposition ("layout") :
- win+g : séparation verticale ("vertical split")
- win+q : séparation horizontale ("horizontal split")
- win+c : mode onglet ("tabbed")
- Win+^ : sélectionner le conteneur parent
- Win+' : sélectionner le conteneur fils
- Win+m : pour activer le mode "resize", touche "Entrer" ou "Échap" pour valider.
- Win+f : Plein écran
Configuration a ajouter/remplacer
Ceci n'est qu'un exemple, libre a vous de l'adapter a votre gout.
# change focus bindsym $mod+t focus left bindsym $mod+s focus down bindsym $mod+r focus up bindsym $mod+n focus right # alternatively, you can use the cursor keys: bindsym $mod+Left focus left bindsym $mod+Down focus down bindsym $mod+Up focus up bindsym $mod+Right focus right # move focused window bindsym $mod+Shift+t move left bindsym $mod+Shift+s move down bindsym $mod+Shift+r move up bindsym $mod+Shift+n move right bindsym $mod+Shift+Left move left bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right # split in horizontal/vertical orientation bindsym $mod+h split h bindsym $mod+v split v # enter fullscreen mode for the focused container bindsym $mod+f fullscreen # change container layout (stacked, tabbed, default) bindsym $mod+g layout splitv bindsym $mod+q layout splith bindsym $mod+c layout tabbed # toggle tiling / floating bindsym $mod+Shift+space floating toggle # change focus between tiling / floating windows bindsym $mod+space focus mode_toggle # focus the parent/child container bindsym $mod+dead_circumflex focus parent bindsym $mod+apostrophe focus child # switch to workspace Bépo Style bindsym $mod+quotedbl workspace 1 bindsym $mod+guillemotleft workspace 2 bindsym $mod+guillemotright workspace 3 bindsym $mod+parenleft workspace 4 bindsym $mod+parenright workspace 5 bindsym $mod+at workspace 1 bindsym $mod+plus workspace 2 bindsym $mod+minus workspace 3 bindsym $mod+slash workspace 4 bindsym $mod+asterisk workspace 5 # move focused container to workspace Bépo Style bindsym $mod+Shift+quotedbl move container to workspace 1 bindsym $mod+Shift+guillemotleft move container to workspace 2 bindsym $mod+Shift+guillemotright move container to workspace 3 bindsym $mod+Shift+parenleft move container to workspace 4 bindsym $mod+Shift+parenright move container to workspace 5 bindsym $mod+Shift+at move container to workspace 1 bindsym $mod+Shift+plus move container to workspace 2 bindsym $mod+Shift+minus move container to workspace 3 bindsym $mod+Shift+slash move container to workspace 4 bindsym $mod+Shift+asterisk move container to workspace 5 # resize window (you can also use the mouse for that) 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 t resize shrink width 10 px or 10 ppt bindsym s resize grow height 10 px or 10 ppt bindsym r resize shrink height 10 px or 10 ppt bindsym n 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" } bindsym $mod+m mode "resize"