Browse Source

Use backslash for mark mode

Alois Mahdal 9 years ago
parent
commit
f0e55bdea3
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      dotfiles/i3/config

+ 2
- 2
dotfiles/i3/config View File

@@ -119,14 +119,14 @@ bindsym $mod+Shift+Tab move scratchpad
119 119
 bindsym $mod+Tab scratchpad show
120 120
 
121 121
 # mark mode
122
-bindsym $mod+equal               mode "mark"
122
+bindsym $mod+backslash               mode "mark"
123 123
 
124 124
 mode "mark" {
125 125
   bindsym m     exec i3-winmark mark   ; mode "default"
126 126
   bindsym u     exec i3-winmark unmark ; mode "default"
127 127
   bindsym g     exec i3-winmark goto   ; mode "default"
128 128
 
129
-  bindsym $mod+equal mode "default"
129
+  bindsym $mod+backslash mode "default"
130 130
   bindsym Escape mode "default"
131 131
   bindsym Return mode "default"
132 132
 }