Only show normal border when remote shell
I generally use the 1pixel border to save screen space. I would like to show a normal bar only on windows containing a urxvt that shows a remote shell and on all local terminals the default 1pixel border.
While this works (1pixel border as default and normal as soon as I ssh on the precise64 host):
for_window [class="URxvt" title="^.*@precise64.*$"] border normal
Since I don't want to list all remote hosts I work on, I would just want to exclude my localhost (hparch) from the matcher, instead of including all others. Unfortunately this wont work:
for_window [class="URxvt" title="^(?!.*@hparch).*$"] border normal
I checked the regex with pcregrep, so it seems to work. Might there be a problem with the way i3 parses the regex?
Problem already appeared here but also no real solution.