3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-02-05 01:35:45 +00:00

hyprctl: add a newline after log()

This commit is contained in:
Vaxry
2024-06-24 23:58:10 +02:00
parent cff0123ce6
commit 4dd2b5902e

View File

@ -47,7 +47,7 @@ void log(std::string str) {
if (quiet)
return;
std::cout << str;
std::cout << str << "\n";
}
std::string getRuntimeDir() {