-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallpapers.toml.sample
35 lines (29 loc) · 1.7 KB
/
wallpapers.toml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Where original wallpapers are located
originals_directory = 'C:\path\to\originals'
# Directory to store the upscaled and cropped versions of each wallpaper for each monitor
# This can get very large if you have high resolution monitors
# This directory will be created if it doesn't exist, but parent directories won't be.
cache_directory = 'C:\path\to\wallpaper-cache'
# The directory used for the database of recently used wallpapers.
# It's not safe to use this database from multiple processes at once.
# It is safe for multiple processes or computers to use, with the same originals directory,
# if they don't access it at the same time.
# This directory will be created if it doesn't exist, but parent directories won't be.
database = 'C:\path\to\wallpaper-db'
# Directory to store temporary files, leave blank for the system default temp directory
# temp_directory = ''
# Use a different upscaler instead of the default waifu2x-ncnn-vulkan implementation.
# The upscaler needs to be compatible with https://github.com/awused/aw-upscale
# alternate_upscaler = ''
# Control how many upscaling jobs can be dispatched at once.
# Upscaling is primarily limited by GPU throughput and VRAM with the default waifu2x-ncnn-vulkan
# configuration.
# Each instance uses about 1.2GB of VRAM.
# Using two threads will slightly increase throughput but greatly increase latency.
# default 1; values higher than 2 are not advised without switching to a cheaper upscaler.
upscaling_jobs = 1
# Only consider GPUs with names matching this prefix for accelerated downscaling.
# Only affects interactive and preview modes.
# See the output of --show-gpus.
# Case sensitive. Leave empty or blank to pick the first GPU found.
# gpu_prefix = "NVIDIA"