mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-17 02:35:57 +01:00
lib: accept theme names for lookup
This commit is contained in:
parent
8a874fc49c
commit
6a92473237
1 changed files with 23 additions and 5 deletions
|
@ -99,12 +99,30 @@ static std::string getFullPathForThemeName(const std::string& name) {
|
||||||
if (!themeDir.is_directory())
|
if (!themeDir.is_directory())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!name.empty() && themeDir.path().stem().string() != name)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
const auto MANIFESTPATH = themeDir.path().string() + "/manifest.hl";
|
const auto MANIFESTPATH = themeDir.path().string() + "/manifest.hl";
|
||||||
|
|
||||||
|
if (name.empty()) {
|
||||||
if (std::filesystem::exists(MANIFESTPATH))
|
if (std::filesystem::exists(MANIFESTPATH))
|
||||||
|
return std::filesystem::canonical(themeDir.path()).string();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!std::filesystem::exists(MANIFESTPATH))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
std::unique_ptr<Hyprlang::CConfig> manifest;
|
||||||
|
try {
|
||||||
|
manifest = std::make_unique<Hyprlang::CConfig>(MANIFESTPATH.c_str(), Hyprlang::SConfigOptions{});
|
||||||
|
manifest->addConfigValue("name", Hyprlang::STRING{""});
|
||||||
|
manifest->commence();
|
||||||
|
manifest->parse();
|
||||||
|
} catch (const char* e) { continue; }
|
||||||
|
|
||||||
|
const std::string NAME = std::any_cast<Hyprlang::STRING>(manifest->getConfigValue("name"));
|
||||||
|
|
||||||
|
if (NAME != name)
|
||||||
|
continue;
|
||||||
|
|
||||||
return std::filesystem::canonical(themeDir.path()).string();
|
return std::filesystem::canonical(themeDir.path()).string();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue