diff options
author | Vaxry <[email protected]> | 2024-06-24 23:58:10 +0200 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-06-24 23:58:10 +0200 |
commit | 4dd2b5902e770eeaf84820eccfebb5451aedb6a5 (patch) | |
tree | aed9a3e58dcfadd3ddc11c1ee2809533d088fd48 /hyprctl | |
parent | cff0123ce62a1f721d3aa2ac0fb58019787a7778 (diff) | |
download | Hyprland-4dd2b5902e770eeaf84820eccfebb5451aedb6a5.tar.gz Hyprland-4dd2b5902e770eeaf84820eccfebb5451aedb6a5.zip |
hyprctl: add a newline after log()
Diffstat (limited to 'hyprctl')
-rw-r--r-- | hyprctl/main.cpp | 2 |
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() { |