]> git.sur5r.net Git - i3/i3/commitdiff
Resize uses up and down, not bottom and top
authorPeter Bui <pnutzh4x0r@gmail.com>
Mon, 8 Aug 2011 20:18:55 +0000 (16:18 -0400)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 9 Aug 2011 07:42:36 +0000 (09:42 +0200)
- Fix userguide resize example
- Update migration script

docs/userguide
i3-migrate-config-to-v4

index 4a11cb1b5873451c6f4f948fbac73dc24cc243ec..f4dd8cb153522accf9cd19bc6d9ea2d42840cd4b 100644 (file)
@@ -789,11 +789,11 @@ mode "resize" {
         bindsym j resize shrink left
         bindsym Shift+j resize grow left
 
-        bindsym k resize grow bottom
-        bindsym Shift+k resize shrink bottom
+        bindsym k resize grow up
+        bindsym Shift+k resize shrink up
 
-        bindsym l resize shrink top
-        bindsym Shift+l resize grow top
+        bindsym l resize shrink down
+        bindsym Shift+l resize grow down
 
         bindsym semicolon resize grow right
         bindsym Shift+semicolon resize shrink right
index 5f20cba1a0de97ec458a059242ef3bb41670347f..65d6bdce3b6d114b2875a64e21f6bc11f44d7b6a 100755 (executable)
@@ -289,6 +289,11 @@ sub convert_command {
         my ($direction, $sign, $px) = ($command =~ /^resize (left|right|top|bottom) ([+-])([0-9]+)/);
         my $cmd = 'resize ';
         $cmd .= ($sign eq '+' ? 'grow' : 'shrink') . ' ';
+        if ($direction eq 'top') {
+            $direction = 'down';
+        } elsif ($direction eq 'bottom') {
+            $direction = 'up';
+        }
         $cmd .= "$direction ";
         $cmd .= "$px px";
         print qq|$statement $key $cmd\n|;