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,6 +122,8 @@ bindsym $mod+Tab scratchpad show
122 122
 bindsym $mod+backslash               mode "mark"
123 123
 
124 124
 mode "mark" {
125
+  set $neutral  "<span foreground='gray30'></span> %title"
126
+  set $runn     "<span foreground='cyan'></span> %title"
125 127
   set $pass     "<span foreground='lime'></span> %title"
126 128
   set $warn     "<span foreground='orange'></span> %title"
127 129
   set $fail     "<span foreground='red'></span> %title"
@@ -137,6 +139,8 @@ mode "mark" {
137 139
   bindsym p             title_format $pass   ; mode "default"
138 140
   bindsym bracketleft   title_format $warn   ; mode "default"
139 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 145
   bindsym BackSpace     title_format $strike ; mode "default"
142 146
   bindsym equal         title_format $unders ; mode "default"