aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-06-24 23:58:10 +0200
committerVaxry <[email protected]>2024-06-24 23:58:10 +0200
commit4dd2b5902e770eeaf84820eccfebb5451aedb6a5 (patch)
treeaed9a3e58dcfadd3ddc11c1ee2809533d088fd48 /hyprctl
parentcff0123ce62a1f721d3aa2ac0fb58019787a7778 (diff)
downloadHyprland-4dd2b5902e770eeaf84820eccfebb5451aedb6a5.tar.gz
Hyprland-4dd2b5902e770eeaf84820eccfebb5451aedb6a5.zip
hyprctl: add a newline after log()
Diffstat (limited to 'hyprctl')
-rw-r--r--hyprctl/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index 2bd325e3..45fe9142 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -47,7 +47,7 @@ void log(std::string str) {
if (quiet)
return;
- std::cout << str;
+ std::cout << str << "\n";
}
std::string getRuntimeDir() {