diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-01-24 00:07:56 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-01-24 00:07:56 -0500 |
| commit | 14f8b4cb544bf50d059b0feb85585e19b77752c7 (patch) | |
| tree | 17b5d5c12a4a3dcd7baf68e453209038ba8b1324 | |
| parent | 374888f5e9c3c98204a708ef40afec86d136d836 (diff) | |
Fix bug #4492 better, the test in openbox-gnome-session needs to be inverted
| -rw-r--r-- | data/xsession/openbox-gnome-session.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/xsession/openbox-gnome-session.in b/data/xsession/openbox-gnome-session.in index 1f17edbc..8dd799c0 100644 --- a/data/xsession/openbox-gnome-session.in +++ b/data/xsession/openbox-gnome-session.in @@ -37,7 +37,7 @@ else if test -z "$SESSION"; then # if its empty then just run openbox SESSION="[openbox]" - elif echo "$SESSION" | grep -q openbox; then + elif ! echo "$SESSION" | grep -q openbox; then # if openbox isn't in the session then append it SESSION="${SESSION%]},openbox]" fi |
