diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-07-31 16:40:32 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-07-31 16:40:32 +0200 |
commit | 97f1370ad32a618f2b789fe18fc5163cc838a723 (patch) | |
tree | 4a69580856f66d379002d5d602260c8466554026 | |
parent | d210017b008d8e7536e43f8b877e9e882f7cb23f (diff) |
Change i3 default keymappings for consistency
-rw-r--r-- | i3/config | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -30,19 +30,19 @@ floating_modifier $mod bindsym $mod+Return exec i3-sensible-terminal # kill focused window -bindsym $mod+Shift+q kill +bindsym $mod+d kill # start dmenu (a program launcher) # bindsym $mod+d exec dmenu_run # There also is the (new) i3-dmenu-desktop which only displays applications # shipping a .desktop file. It is a wrapper around dmenu, so you need that # installed. -bindsym $mod+d exec --no-startup-id i3-dmenu-desktop +bindsym $mod+p exec --no-startup-id i3-dmenu-desktop # change focus bindsym $mod+h focus left -bindsym $mod+n focus down -bindsym $mod+p focus up +bindsym $mod+j focus down +bindsym $mod+k focus up bindsym $mod+l focus right # alternatively, you can use the cursor keys: @@ -53,8 +53,8 @@ bindsym $mod+Right focus right # move focused window bindsym $mod+Shift+h move left -bindsym $mod+Shift+n move down -bindsym $mod+Shift+p move up +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up bindsym $mod+Shift+l move right # alternatively, you can use the cursor keys: @@ -136,8 +136,8 @@ mode "resize" { # Pressing up will shrink the window’s height. # Pressing down will grow the window’s height. bindsym h resize shrink width 10 px or 10 ppt - bindsym t resize grow height 10 px or 10 ppt - bindsym p resize shrink height 10 px or 10 ppt + bindsym j resize grow height 10 px or 10 ppt + bindsym k resize shrink height 10 px or 10 ppt bindsym l resize grow width 10 px or 10 ppt # same bindings, but for the arrow keys @@ -160,3 +160,6 @@ bar { } exec $HOME/.xinitrc + +# Personal shortcuts +bindsym $mod+b exec chromium-browser |