mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-03-18 21:28:52 -05:00

- Directory is qt_themes, each theme must be in one folder - It should contain a file "style.qss" - It may contain an "icons" sub-directory, to override included icons (with files like mytheme/icons/colorful/48x48/star.png for example) - Directories ending by "_dark" are reserved for dark variant icons. They are not listed as themes in the UI. - If theme directory contains "dark" or "midnight", theme will be considered dark
33 lines
760 B
C++
33 lines
760 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
// suyu data directories
|
|
|
|
#define SUYU_DIR "suyu"
|
|
#define PORTABLE_DIR "user"
|
|
|
|
// Sub-directories contained within a suyu data directory
|
|
|
|
#define AMIIBO_DIR "amiibo"
|
|
#define CACHE_DIR "cache"
|
|
#define CONFIG_DIR "config"
|
|
#define CRASH_DUMPS_DIR "crash_dumps"
|
|
#define DUMP_DIR "dump"
|
|
#define ICONS_DIR "icons"
|
|
#define KEYS_DIR "keys"
|
|
#define LOAD_DIR "load"
|
|
#define LOG_DIR "log"
|
|
#define NAND_DIR "nand"
|
|
#define PLAY_TIME_DIR "play_time"
|
|
#define SCREENSHOTS_DIR "screenshots"
|
|
#define SDMC_DIR "sdmc"
|
|
#define SHADER_DIR "shader"
|
|
#define TAS_DIR "tas"
|
|
#define THEMES_DIR "qt_themes"
|
|
|
|
// suyu-specific files
|
|
|
|
#define LOG_FILE "suyu_log.txt"
|