forked from quickshell/quickshell
This pragma ends up used to set things like QQC theme which shouldn't be cascaded into child processes.
11 lines
236 B
C++
11 lines
236 B
C++
#include "common.hpp"
|
|
|
|
#include <qdatetime.h>
|
|
#include <qprocess.h>
|
|
|
|
namespace qs {
|
|
|
|
const QDateTime Common::LAUNCH_TIME = QDateTime::currentDateTime();
|
|
QProcessEnvironment Common::INITIAL_ENVIRONMENT = {}; // NOLINT
|
|
|
|
} // namespace qs
|