From 1bc74fa8407144d6ece2bfcf6745c0e283eb1b8a Mon Sep 17 00:00:00 2001 From: scorpion-26 <58082714+scorpion-26@users.noreply.github.com> Date: Fri, 13 Jan 2023 16:24:22 +0100 Subject: [PATCH] Add Hyprland check for logout. --- src/System.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index 44792ee..183a053 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -294,7 +294,11 @@ namespace System void ExitWM() { +#ifdef HAS_HYPRLAND system("killall Hyprland"); +#else + system("Implement me!"); +#endif } void Lock()