hyprctl: add nix flag (#12653)
This commit is contained in:
parent
7ccc57eb7c
commit
4036c37e55
3 changed files with 12 additions and 1 deletions
|
|
@ -1067,7 +1067,7 @@ std::string versionRequest(eHyprCtlOutputFormat format, std::string request) {
|
|||
result += __hyprland_api_get_hash();
|
||||
result += "\n";
|
||||
|
||||
#if (!ISDEBUG && !defined(NO_XWAYLAND))
|
||||
#if (!ISDEBUG && !defined(NO_XWAYLAND) && !defined(BUILT_WITH_NIX))
|
||||
result += "no flags were set\n";
|
||||
#else
|
||||
result += "flags set:\n";
|
||||
|
|
@ -1077,6 +1077,9 @@ std::string versionRequest(eHyprCtlOutputFormat format, std::string request) {
|
|||
#ifdef NO_XWAYLAND
|
||||
result += "no xwayland\n";
|
||||
#endif
|
||||
#ifdef BUILT_WITH_NIX
|
||||
result += "nix\n";
|
||||
#endif
|
||||
#endif
|
||||
return result;
|
||||
} else {
|
||||
|
|
@ -1113,6 +1116,9 @@ std::string versionRequest(eHyprCtlOutputFormat format, std::string request) {
|
|||
#ifdef NO_XWAYLAND
|
||||
result += "\"no xwayland\",";
|
||||
#endif
|
||||
#ifdef BUILT_WITH_NIX
|
||||
result += "\"nix\",";
|
||||
#endif
|
||||
|
||||
trimTrailingComma(result);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue