mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-23 00:25:57 +01:00
exec: remove redundant environment variables from spawn (#3923)
This commit is contained in:
parent
aedcade68d
commit
258c83f3bb
1 changed files with 0 additions and 5 deletions
|
@ -641,11 +641,6 @@ void CKeybindManager::spawn(std::string args) {
|
||||||
args = args.substr(args.find_first_of(']') + 1);
|
args = args.substr(args.find_first_of(']') + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_pXWaylandManager->m_sWLRXWayland)
|
|
||||||
args = "WAYLAND_DISPLAY=" + std::string(g_pCompositor->m_szWLDisplaySocket) + " DISPLAY=" + std::string(g_pXWaylandManager->m_sWLRXWayland->display_name) + " " + args;
|
|
||||||
else
|
|
||||||
args = "WAYLAND_DISPLAY=" + std::string(g_pCompositor->m_szWLDisplaySocket) + " " + args;
|
|
||||||
|
|
||||||
const uint64_t PROC = spawnRaw(args);
|
const uint64_t PROC = spawnRaw(args);
|
||||||
|
|
||||||
if (!RULES.empty()) {
|
if (!RULES.empty()) {
|
||||||
|
|
Loading…
Reference in a new issue