mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 09:05:59 +01:00
fix exec as well on startup
This commit is contained in:
parent
17f63bf3e8
commit
c68eaafd16
1 changed files with 5 additions and 1 deletions
|
@ -259,7 +259,11 @@ void CConfigManager::parseLine(std::string& line) {
|
||||||
const auto VALUE = line.substr(EQUALSPLACE + 1);
|
const auto VALUE = line.substr(EQUALSPLACE + 1);
|
||||||
|
|
||||||
if (COMMAND == "exec") {
|
if (COMMAND == "exec") {
|
||||||
handleRawExec(COMMAND, VALUE);
|
if (isFirstLaunch) {
|
||||||
|
firstExecRequests.push_back(VALUE);
|
||||||
|
} else {
|
||||||
|
handleRawExec(COMMAND, VALUE);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
} else if (COMMAND == "exec-once") {
|
} else if (COMMAND == "exec-once") {
|
||||||
if (isFirstLaunch) {
|
if (isFirstLaunch) {
|
||||||
|
|
Loading…
Reference in a new issue