Fix x11 overriding tmux

This commit is contained in:
Justin Frank 2019-03-13 14:38:21 -07:00
parent aa6d19bee6
commit 49b00992ca

View File

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