mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-23 22:09:50 +01:00
config/ConfigManager.cpp: add instruction to edit config (#9130)
This commit is contained in:
parent
ce48bc5408
commit
c8a0443adc
1 changed files with 1 additions and 1 deletions
|
@ -930,7 +930,7 @@ void CConfigManager::postConfigReload(const Hyprlang::CParseResult& result) {
|
||||||
g_pHyprError->queueCreate(result.getError(), CHyprColor(1.0, 50.0 / 255.0, 50.0 / 255.0, 1.0));
|
g_pHyprError->queueCreate(result.getError(), CHyprColor(1.0, 50.0 / 255.0, 50.0 / 255.0, 1.0));
|
||||||
else if (std::any_cast<Hyprlang::INT>(m_pConfig->getConfigValue("autogenerated")) == 1)
|
else if (std::any_cast<Hyprlang::INT>(m_pConfig->getConfigValue("autogenerated")) == 1)
|
||||||
g_pHyprError->queueCreate(
|
g_pHyprError->queueCreate(
|
||||||
"Warning: You're using an autogenerated config! (config file: " + getMainConfigPath() +
|
"Warning: You're using an autogenerated config! Edit the config file to get rid of this message. (config file: " + getMainConfigPath() +
|
||||||
" )\nSUPER+Q -> kitty (if it doesn't launch, make sure it's installed or choose a different terminal in the config)\nSUPER+M -> exit Hyprland",
|
" )\nSUPER+Q -> kitty (if it doesn't launch, make sure it's installed or choose a different terminal in the config)\nSUPER+M -> exit Hyprland",
|
||||||
CHyprColor(1.0, 1.0, 70.0 / 255.0, 1.0));
|
CHyprColor(1.0, 1.0, 70.0 / 255.0, 1.0));
|
||||||
else if (*PENABLEEXPLICIT != prevEnabledExplicit)
|
else if (*PENABLEEXPLICIT != prevEnabledExplicit)
|
||||||
|
|
Loading…
Reference in a new issue