Focus on a window of a certain class *unless* it has a certain title
As explained in the i3 documentation, to focus on a window of class, say, "Emacs", it is enough to write:
bindsym $mod+x [class="Emacs"] focus
However, I'd like to focus on a Emacs window unless the Emacs window has a certain title, say, "emacs_scratchpad". I'm not sure how to implement the unless bit. Does anyone know?