aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-05-10 23:56:49 +0100
committerVaxry <[email protected]>2024-05-10 23:56:54 +0100
commited3a888fc274e09a5097ebbe3d206e4bc85bbb87 (patch)
tree77d0ad01339fc62b81d4ebf4e498bcb4e3d6b8c5
parenta8ab1b1679e639ef23952f1a1d0834859d1c01b7 (diff)
downloadHyprland-ed3a888fc274e09a5097ebbe3d206e4bc85bbb87.tar.gz
Hyprland-ed3a888fc274e09a5097ebbe3d206e4bc85bbb87.zip
hyprpm: fix style
-rw-r--r--hyprpm/src/core/PluginManager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp
index 8fa5a988..affc7eea 100644
--- a/hyprpm/src/core/PluginManager.cpp
+++ b/hyprpm/src/core/PluginManager.cpp
@@ -444,7 +444,8 @@ bool CPluginManager::updateHeaders(bool force) {
// let us give a bit of leg-room for shallowing
// due to timezones, etc.
- const std::string SHALLOW_DATE = removeBeginEndSpacesTabs(HLVER.date).empty() ? "" : execAndGet("LC_TIME=\"en_US.UTF-8\" date --date='" + HLVER.date + " - 1 weeks' '+\%a \%b \%d \%H:\%M:\%S \%Y'");
+ const std::string SHALLOW_DATE =
+ removeBeginEndSpacesTabs(HLVER.date).empty() ? "" : execAndGet("LC_TIME=\"en_US.UTF-8\" date --date='" + HLVER.date + " - 1 weeks' '+\%a \%b \%d \%H:\%M:\%S \%Y'");
if (m_bVerbose)
progress.printMessageAbove(std::string{Colors::BLUE} + "[v] " + Colors::RESET + "will shallow since: " + SHALLOW_DATE);