Fixed if statement in x11 detection

This commit is contained in:
Justin Frank 2019-03-27 10:17:37 -07:00
parent 891c6ca8e2
commit 887a5223ac

View File

@ -1,7 +1,7 @@
# x11
hook global KakBegin .* %sh{
if [ -n "$DISPLAY" && [ -z "$TMUX" ]; then
if [ -n "$DISPLAY" ] && [ -z "$TMUX" ]; then
echo "require-module x11"
fi
}