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
 
123
 
124
 mode "mark" {
124
 mode "mark" {
125
   #      
125
   #      
126
+  #        
126
   set $neutral  "<span foreground='#999999'></span> %title"
127
   set $neutral  "<span foreground='#999999'></span> %title"
127
   set $runn     "<span foreground='cyan'></span> %title"
128
   set $runn     "<span foreground='cyan'></span> %title"
128
   set $pass     "<span foreground='lime'></span> %title"
129
   set $pass     "<span foreground='lime'></span> %title"
133
   set $italic   "<i>%title</i>"
134
   set $italic   "<i>%title</i>"
134
   set $normal   "%title"
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
   bindsym m     exec i3-winmark mark   ; mode "default"
141
   bindsym m     exec i3-winmark mark   ; mode "default"
137
   bindsym u     exec i3-winmark unmark ; mode "default"
142
   bindsym u     exec i3-winmark unmark ; mode "default"
138
   bindsym g     exec i3-winmark goto   ; mode "default"
143
   bindsym g     exec i3-winmark goto   ; mode "default"
147
   bindsym apostrophe    title_format $runn   ; mode "default"
152
   bindsym apostrophe    title_format $runn   ; mode "default"
148
   bindsym semicolon     title_format $neutral; mode "default"
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
   bindsym BackSpace     title_format $strike ; mode "default"
159
   bindsym BackSpace     title_format $strike ; mode "default"
151
   bindsym equal         title_format $unders ; mode "default"
160
   bindsym equal         title_format $unders ; mode "default"
152
   bindsym minus         title_format $italic ; mode "default"
161
   bindsym minus         title_format $italic ; mode "default"