Browse Source

Add mark set for choice workflow

Alois Mahdal 9 years ago
parent
commit
16bdf450a2
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      dotfiles/i3/config

+ 9
- 0
dotfiles/i3/config View File

@@ -123,6 +123,7 @@ bindsym $mod+backslash               mode "mark"
123 123
 
124 124
 mode "mark" {
125 125
   #      
126
+  #        
126 127
   set $neutral  "<span foreground='#999999'></span> %title"
127 128
   set $runn     "<span foreground='cyan'></span> %title"
128 129
   set $pass     "<span foreground='lime'></span> %title"
@@ -133,6 +134,10 @@ mode "mark" {
133 134
   set $italic   "<i>%title</i>"
134 135
   set $normal   "%title"
135 136
 
137
+  set $list     "<span foreground='#999999'></span> %title"
138
+  set $item     "<span foreground='#999999'></span> %title"
139
+  set $favorite "<span foreground='red'></span> %title"
140
+
136 141
   bindsym m     exec i3-winmark mark   ; mode "default"
137 142
   bindsym u     exec i3-winmark unmark ; mode "default"
138 143
   bindsym g     exec i3-winmark goto   ; mode "default"
@@ -147,6 +152,10 @@ mode "mark" {
147 152
   bindsym apostrophe    title_format $runn   ; mode "default"
148 153
   bindsym semicolon     title_format $neutral; mode "default"
149 154
 
155
+  bindsym comma         title_format $favorite ; mode "default"
156
+  bindsym period        title_format $item ; mode "default"
157
+  bindsym slash         title_format $list ; mode "default"
158
+
150 159
   bindsym BackSpace     title_format $strike ; mode "default"
151 160
   bindsym equal         title_format $unders ; mode "default"
152 161
   bindsym minus         title_format $italic ; mode "default"