Browse Source

Add "neutral" and "running" states for mark mode

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

+ 4
- 0
dotfiles/i3/config View File

122
 bindsym $mod+backslash               mode "mark"
122
 bindsym $mod+backslash               mode "mark"
123
 
123
 
124
 mode "mark" {
124
 mode "mark" {
125
+  set $neutral  "<span foreground='gray30'></span> %title"
126
+  set $runn     "<span foreground='cyan'></span> %title"
125
   set $pass     "<span foreground='lime'></span> %title"
127
   set $pass     "<span foreground='lime'></span> %title"
126
   set $warn     "<span foreground='orange'></span> %title"
128
   set $warn     "<span foreground='orange'></span> %title"
127
   set $fail     "<span foreground='red'></span> %title"
129
   set $fail     "<span foreground='red'></span> %title"
137
   bindsym p             title_format $pass   ; mode "default"
139
   bindsym p             title_format $pass   ; mode "default"
138
   bindsym bracketleft   title_format $warn   ; mode "default"
140
   bindsym bracketleft   title_format $warn   ; mode "default"
139
   bindsym bracketright  title_format $fail   ; mode "default"
141
   bindsym bracketright  title_format $fail   ; mode "default"
142
+  bindsym apostrophe    title_format $runn   ; mode "default"
143
+  bindsym semicolon     title_format $neutral; mode "default"
140
 
144
 
141
   bindsym BackSpace     title_format $strike ; mode "default"
145
   bindsym BackSpace     title_format $strike ; mode "default"
142
   bindsym equal         title_format $unders ; mode "default"
146
   bindsym equal         title_format $unders ; mode "default"