Can preload recursive symlinks now

This commit is contained in:
lch361 2024-01-19 07:34:20 +03:00
parent 43b6e9d2e2
commit 2b79075feb
1 changed files with 6 additions and 7 deletions

View File

@ -129,14 +129,13 @@ void CHyprpaper::preloadAllWallpapersFromConfig() {
continue;
m_mWallpaperTargets[wp] = CWallpaperTarget();
if (std::filesystem::is_symlink(wp)) {
auto real_wp = std::filesystem::read_symlink(wp);
std::filesystem::path absolute_path = std::filesystem::path(wp).parent_path() / real_wp;
absolute_path = absolute_path.lexically_normal();
m_mWallpaperTargets[wp].create(absolute_path);
} else {
m_mWallpaperTargets[wp].create(wp);
std::filesystem::path create_wp = wp;
while (std::filesystem::is_symlink(create_wp)) {
auto real_wp = std::filesystem::read_symlink(create_wp);
std::filesystem::path absolute_path = std::filesystem::path(create_wp).parent_path() / real_wp;
create_wp = absolute_path.lexically_normal();
}
m_mWallpaperTargets[wp].create(create_wp);
}
g_pConfigManager->m_dRequestedPreloads.clear();