Codebase list i3-gaps / c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main i3-sensible-pager
c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main

Tree @c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main (Download .tar.gz)

i3-sensible-pager @c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/mainraw · history · blame

#!/bin/sh
#
# This code is released in public domain by Han Boetes <[email protected]>

# This script tries to exec a pager by trying some known pagers if $PAGER is
# not set.
#
# Distributions/packagers can enhance this script with a
# distribution-specific mechanism to find the preferred pager.

# Hopefully one of these is installed (no flamewars about preference please!):
# We don't use 'more' because it will exit if the file is too short.
# Worst case scenario we'll open the file in your editor.
for pager in "$PAGER" less most w3m pg i3-sensible-editor; do
    if command -v "$pager" > /dev/null 2>&1; then
        exec "$pager" "$@"
    fi
done