mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-04-10 06:11:54 +10:00
core: track XDG_CURRENT_DESKTOP in debuginfo
This commit is contained in:
parent
6ef86dd5aa
commit
313f4e47f6
1 changed files with 2 additions and 1 deletions
|
|
@ -129,12 +129,13 @@ QString envInfo() {
|
|||
auto stream = QTextStream(&info);
|
||||
|
||||
for (auto** envp = environ; *envp != nullptr; ++envp) { // NOLINT
|
||||
auto prefixes = std::array<std::string_view, 5> {
|
||||
auto prefixes = std::array<std::string_view, 6> {
|
||||
"QS_",
|
||||
"QT_",
|
||||
"QML_",
|
||||
"QML2_",
|
||||
"QSG_",
|
||||
"XDG_CURRENT_DESKTOP=",
|
||||
};
|
||||
|
||||
for (const auto& prefix: prefixes) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue