Images: Fix bug with getting terminal size

This commit is contained in:
Dylan Araps 2017-02-09 11:00:50 +11:00
parent 0af39a6d30
commit 199dadd537

View file

@ -2232,7 +2232,7 @@ get_term_size() {
fi fi
# Get terminal width/height if \033[14t is unsupported. # Get terminal width/height if \033[14t is unsupported.
if [[ -z "$term_width" && "$image_backend" == "w3m" ]]; then if [[ -z "$term_width" ]]; then
if type -p xdotool >/dev/null 2>&1; then if type -p xdotool >/dev/null 2>&1; then
current_window="$(xdotool getactivewindow)" current_window="$(xdotool getactivewindow)"
source <(xdotool getwindowgeometry --shell "$current_window") source <(xdotool getwindowgeometry --shell "$current_window")