mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 14:35:57 +01:00
parent
f2a8536d42
commit
899a70e759
1 changed files with 4 additions and 5 deletions
|
@ -202,12 +202,11 @@ CPortalManager::CPortalManager() {
|
||||||
const auto XDG_CONFIG_HOME = getenv("XDG_CONFIG_HOME");
|
const auto XDG_CONFIG_HOME = getenv("XDG_CONFIG_HOME");
|
||||||
const auto HOME = getenv("HOME");
|
const auto HOME = getenv("HOME");
|
||||||
|
|
||||||
if (!HOME && !XDG_CONFIG_HOME) {
|
if (!HOME && !XDG_CONFIG_HOME)
|
||||||
Debug::log(CRIT, "Cannot proceed: neither $HOME nor $XDG_CONFIG_HOME is present in env");
|
Debug::log(WARN, "neither $HOME nor $XDG_CONFIG_HOME is present in env");
|
||||||
throw "$HOME and $XDG_CONFIG_HOME both missing from env";
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string path = XDG_CONFIG_HOME ? std::string{XDG_CONFIG_HOME} + "/hypr/xdph.conf" : std::string{HOME} + "/.config/hypr/xdph.conf";
|
std::string path =
|
||||||
|
(!XDG_CONFIG_HOME && !HOME) ? "/tmp/xdph.conf" : (XDG_CONFIG_HOME ? std::string{XDG_CONFIG_HOME} + "/hypr/xdph.conf" : std::string{HOME} + "/.config/hypr/xdph.conf");
|
||||||
|
|
||||||
m_sConfig.config = std::make_unique<Hyprlang::CConfig>(path.c_str(), Hyprlang::SConfigOptions{.allowMissingConfig = true});
|
m_sConfig.config = std::make_unique<Hyprlang::CConfig>(path.c_str(), Hyprlang::SConfigOptions{.allowMissingConfig = true});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue