fix: correct typo in max_outputs conditional

This commit is contained in:
Martin Wimpress 2024-06-25 10:54:05 +01:00 committed by Martin Wimpress
parent 7afab97c63
commit 4b30ea21f4
1 changed files with 1 additions and 1 deletions

View File

@ -940,7 +940,7 @@ function configure_display() {
esac esac
# Configure multiscreen if max_outputs was provided in the .conf file # Configure multiscreen if max_outputs was provided in the .conf file
if [ -v max_outputs ]; then if [ -n "${max_outputs}" ]; then
VIDEO="${VIDEO},max_outputs=${max_outputs}" VIDEO="${VIDEO},max_outputs=${max_outputs}"
fi fi