sway/contrib
Manuel Mendez dc5cfc2abb grimshot: fix branching on command exit status
The previous behavior was incorrect because `if` was checking the return
status of the `[` command which was never going to be an error. `[`
seems to only return an error if no args are provided. This was
basically a useless use of `[` anyway since it was just meant as a
straight interpretation of command exit, something that `if` can do
itself.

Compare:

```sh
[ ]; echo ?=$?
[ /bin/false ]; echo ?=$?
if [ /bin/false ]; then echo this is the unintended bug; fi
if /bin/false; then echo this will not be printed; fi
```
2019-11-17 10:59:39 -05:00
..
_incr_version chmod +x contrib/_incr_version 2019-08-27 12:30:48 +09:00
grimshot grimshot: fix branching on command exit status 2019-11-17 10:59:39 -05:00
inactive-windows-transparency.py A script to make inactive windows transparent 2018-10-20 21:58:00 +03:00