mirror of
https://github.com/daledavies/jump.git
synced 2026-01-26 09:09:07 +01:00
Issue #66: Allow for background blur of 0
This commit is contained in:
@@ -41,9 +41,9 @@ return [
|
||||
'noindex' => getenv('NOINDEX') ?: true,
|
||||
|
||||
// Background blur percentage.
|
||||
'bgblur' => getenv('BGBLUR') ?: '70',
|
||||
'bgblur' => (getenv('BGBLUR') !== false) ? getenv('BGBLUR') : '70',
|
||||
// Background brightness percentage.
|
||||
'bgbright' => getenv('BGBRIGHT') ?: '85',
|
||||
'bgbright' => (getenv('BGBRIGHT') !== false) ? getenv('BGBRIGHT') : '85',
|
||||
// Unsplash API key, when added will use Unsplash background images.
|
||||
'unsplashapikey' => getenv('UNSPLASHAPIKEY') ?: false,
|
||||
// Unsplash collection name to pick random image from.
|
||||
|
||||
Reference in New Issue
Block a user