Support symlinks (#78)

This commit is contained in:
GoatFoo 2023-07-22 18:28:08 +02:00 committed by GitHub
parent ac5f7b038d
commit 5d896893de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,13 @@ void CHyprpaper::preloadAllWallpapersFromConfig() {
continue; continue;
m_mWallpaperTargets[wp] = CWallpaperTarget(); m_mWallpaperTargets[wp] = CWallpaperTarget();
m_mWallpaperTargets[wp].create(wp); if (std::filesystem::is_symlink(wp)) {
auto real_wp = std::filesystem::read_symlink(wp);
m_mWallpaperTargets[wp].create(real_wp);
} else {
m_mWallpaperTargets[wp].create(wp);
}
} }
g_pConfigManager->m_dRequestedPreloads.clear(); g_pConfigManager->m_dRequestedPreloads.clear();
@ -597,4 +603,4 @@ void CHyprpaper::unlockSingleInstance() {
const std::string XDG_RUNTIME_DIR = getenv("XDG_RUNTIME_DIR"); const std::string XDG_RUNTIME_DIR = getenv("XDG_RUNTIME_DIR");
const auto LOCKFILE = XDG_RUNTIME_DIR + "/hyprpaper.lock"; const auto LOCKFILE = XDG_RUNTIME_DIR + "/hyprpaper.lock";
unlink(LOCKFILE.c_str()); unlink(LOCKFILE.c_str());
} }