浏览代码

Merge branch 'key-locations'

DricomDragon 5 年之前
父节点
当前提交
240cdacf95
共有 3 个文件被更改,包括 89 次插入75 次删除
  1. 88 73
      Install/Templates/i3/config
  2. 1 1
      Install/Templates/keyboard
  3. 0 1
      Install/dvp-install

+ 88 - 73
Install/Templates/i3/config

@@ -8,6 +8,9 @@
 # To get a config file with the same key positions, but for your current
 # layout, use the i3-config-wizard
 #
+# Please see https://i3wm.org/docs/userguide.html for a complete reference!
+
+set $mod Mod4
 
 # Font for window titles. Will also be used by the bar unless a different font
 # is used in the bar {} block below.
@@ -26,126 +29,138 @@ font pango:monospace 8
 
 # use these keys for focus, movement, and resize directions when reaching for
 # the arrows is not convenient
-set $up h
-set $down t
-set $left n
-set $right s
+set $up k
+set $down j
+set $left h
+set $right l
 
 # use Mouse+Mod4 to drag floating windows to their wanted position
-floating_modifier Mod4
+floating_modifier $mod
 
 # start a terminal
-bindsym Mod4+Return exec i3-sensible-terminal
+bindsym $mod+Return exec i3-sensible-terminal
 
 # kill focused window
-bindsym Mod4+Shift+q kill
+bindsym $mod+Shift+t kill
 
 # start dmenu (a program launcher)
-bindsym Mod4+d exec dmenu_run
+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 Mod4+d exec --no-startup-id i3-dmenu-desktop
+# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
 
 # change focus
-bindsym Mod4+$left focus left
-bindsym Mod4+$down focus down
-bindsym Mod4+$up focus up
-bindsym Mod4+$right focus right
+bindsym $mod+$left focus left
+bindsym $mod+$down focus down
+bindsym $mod+$up focus up
+bindsym $mod+$right focus right
 
 # alternatively, you can use the cursor keys:
-bindsym Mod4+Left focus left
-bindsym Mod4+Down focus down
-bindsym Mod4+Up focus up
-bindsym Mod4+Right focus right
+bindsym $mod+Left focus left
+bindsym $mod+Down focus down
+bindsym $mod+Up focus up
+bindsym $mod+Right focus right
 
 # move focused window
-bindsym Mod4+Shift+$left move left
-bindsym Mod4+Shift+$down move down
-bindsym Mod4+Shift+$up move up
-bindsym Mod4+Shift+$right 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
 
 # alternatively, you can use the cursor keys:
-bindsym Mod4+Shift+Left move left
-bindsym Mod4+Shift+Down move down
-bindsym Mod4+Shift+Up move up
-bindsym Mod4+Shift+Right 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 orientation
-bindsym Mod4+i split h
+bindsym $mod+v split h
 
 # split in vertical orientation
-bindsym Mod4+v split v
+bindsym $mod+minus split v
 
 # enter fullscreen mode for the focused container
-bindsym Mod4+f fullscreen toggle
+bindsym $mod+f fullscreen toggle
 
 # change container layout (stacked, tabbed, toggle split)
-bindsym Mod4+k layout stacking
-bindsym Mod4+w layout tabbed
-bindsym Mod4+e layout toggle split
+bindsym $mod+o layout stacking
+bindsym $mod+comma layout tabbed
+bindsym $mod+period layout toggle split
 
 # toggle tiling / floating
-bindsym Mod4+Shift+space floating toggle
+bindsym $mod+Shift+space floating toggle
 
 # change focus between tiling / floating windows
-bindsym Mod4+space focus mode_toggle
+bindsym $mod+space focus mode_toggle
 
 # focus the parent container
-bindsym Mod4+a focus parent
+bindsym $mod+a focus parent
 
 # focus the child container
-#bindsym Mod4+d focus child
+bindsym $mod+e focus child
 
 # move the currently focused window to the scratchpad
-bindsym Mod4+Shift+minus move scratchpad
+bindsym $mod+Shift+semicolon move scratchpad
 
 # Show the next scratchpad window or hide the focused scratchpad window.
 # If there are multiple scratchpad windows, this command cycles through them.
-bindsym Mod4+minus scratchpad show
+bindsym $mod+semicolon scratchpad show
 
 # switch to workspace
-bindsym Mod4+ampersand workspace 1
-bindsym Mod4+bracketleft workspace 2
-bindsym Mod4+braceleft workspace 3
-bindsym Mod4+braceright workspace 4
-bindsym Mod4+parenleft workspace 5
-bindsym Mod4+equal workspace 6
-bindsym Mod4+asterisk workspace 7
-bindsym Mod4+parenright workspace 8
-bindsym Mod4+plus workspace 9
-bindsym Mod4+bracketright workspace 10
-
-# move focused container to workspace
-bindsym Mod4+Shift+ampersand move container to workspace 1
-bindsym Mod4+Shift+bracketleft move container to workspace 2
-bindsym Mod4+Shift+braceleft move container to workspace 3
-bindsym Mod4+Shift+braceright move container to workspace 4
-bindsym Mod4+Shift+parenleft move container to workspace 5
-bindsym Mod4+Shift+equal move container to workspace 6
-bindsym Mod4+Shift+asterisk move container to workspace 7
-bindsym Mod4+Shift+parenright move container to workspace 8
-bindsym Mod4+Shift+plus move container to workspace 9
-bindsym Mod4+Shift+bracketright move container to workspace 10
+bindsym $mod+ampersand workspace 1
+bindsym $mod+bracketleft workspace 2
+bindsym $mod+braceleft workspace 3
+bindsym $mod+braceright workspace 4
+bindsym $mod+parenleft workspace 5
+bindsym $mod+equal workspace 6
+bindsym $mod+asterisk workspace 7
+bindsym $mod+parenright workspace 8
+bindsym $mod+plus workspace 9
+bindsym $mod+bracketright workspace 10
+
+# switch to workspace with numpad
+bindsym $mod+1 workspace 1
+bindsym $mod+2 workspace 2
+bindsym $mod+3 workspace 3
+bindsym $mod+4 workspace 4
+bindsym $mod+5 workspace 5
+bindsym $mod+6 workspace 6
+bindsym $mod+7 workspace 7
+bindsym $mod+8 workspace 8
+bindsym $mod+9 workspace 9
+bindsym $mod+0 workspace 10
 
 # move focused container to workspace
-#bindsym Mod4+Shift+1 move container to workspace 1
-#bindsym Mod4+Shift+2 move container to workspace 2
-#bindsym Mod4+Shift+3 move container to workspace 3
-#bindsym Mod4+Shift+4 move container to workspace 4
-#bindsym Mod4+Shift+5 move container to workspace 5
-#bindsym Mod4+Shift+6 move container to workspace 6
-#bindsym Mod4+Shift+7 move container to workspace 7
-#bindsym Mod4+Shift+8 move container to workspace 8
-#bindsym Mod4+Shift+9 move container to workspace 9
-#bindsym Mod4+Shift+0 move container to workspace 10
+bindsym $mod+Shift+ampersand move container to workspace 1
+bindsym $mod+Shift+bracketleft move container to workspace 2
+bindsym $mod+Shift+braceleft move container to workspace 3
+bindsym $mod+Shift+braceright move container to workspace 4
+bindsym $mod+Shift+parenleft move container to workspace 5
+bindsym $mod+Shift+equal move container to workspace 6
+bindsym $mod+Shift+asterisk move container to workspace 7
+bindsym $mod+Shift+parenright move container to workspace 8
+bindsym $mod+Shift+plus move container to workspace 9
+bindsym $mod+Shift+bracketright move container to workspace 10
+
+# move focused container to workspace with numpad
+bindsym $mod+Shift+1 move container to workspace 1
+bindsym $mod+Shift+2 move container to workspace 2
+bindsym $mod+Shift+3 move container to workspace 3
+bindsym $mod+Shift+4 move container to workspace 4
+bindsym $mod+Shift+5 move container to workspace 5
+bindsym $mod+Shift+6 move container to workspace 6
+bindsym $mod+Shift+7 move container to workspace 7
+bindsym $mod+Shift+8 move container to workspace 8
+bindsym $mod+Shift+9 move container to workspace 9
+bindsym $mod+Shift+0 move container to workspace 10
 
 # reload the configuration file
-bindsym Mod4+Shift+c reload
+bindsym $mod+Shift+c reload
 # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
-bindsym Mod4+Shift+r restart
+bindsym $mod+Shift+r restart
 # exit i3 (logs you out of your X session)
-bindsym Mod4+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
+bindsym $mod+Escape exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
 
 # resize window (you can also use the mouse for that)
 mode "resize" {
@@ -171,7 +186,7 @@ mode "resize" {
         bindsym Escape mode "default"
 }
 
-bindsym Mod4+r mode "resize"
+bindsym $mod+g mode "resize"
 
 # Start i3bar to display a workspace bar (plus the system information i3status
 # finds out, if available)

+ 1 - 1
Install/Templates/keyboard

@@ -5,6 +5,6 @@
 XKBMODEL="pc105"
 XKBLAYOUT="us"
 XKBVARIANT="dvp"
-XKBOPTIONS="caps:swapescape"
+XKBOPTIONS=""
 
 BACKSPACE="guess"

+ 0 - 1
Install/dvp-install

@@ -3,5 +3,4 @@
 # Install programming dvorak keyboard
 ## !!! CHECK YOUR XKMODEL !!!
 ## Set programming dvorak layout everywhere
-## Swap capslock and escape
 sudo cp Templates/keyboard /etc/default/keyboard