summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-12 21:28:44 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-12 21:28:44 +1100
commitb4514a7820ed5dcf845fc1ce068d1ee50a89927e (patch)
tree19ce3737c38c7cb03220feabb88cb84c83f1c01e
parentpicker: use hyprctl proc to get cursor on init (diff)
downloadcaelestia-shell-b4514a7820ed5dcf845fc1ce068d1ee50a89927e.tar.gz
caelestia-shell-b4514a7820ed5dcf845fc1ce068d1ee50a89927e.tar.bz2
caelestia-shell-b4514a7820ed5dcf845fc1ce068d1ee50a89927e.zip
extras: fix typo
-rw-r--r--extras/version.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/extras/version.cpp b/extras/version.cpp
index e1a0cf3..d634341 100644
--- a/extras/version.cpp
+++ b/extras/version.cpp
@@ -10,7 +10,8 @@ int main(int argc, char* argv[]) {
std::cout << GIT_REVISION << std::endl;
std::cout << DISTRIBUTOR << std::endl;
} else if (arg == "-s" || arg == "--short") {
- std::cout << PROJECT_NAME << " " << VERSION << ", revision " << GIT_REVISION << ", distrubuted by: " << DISTRIBUTOR << std::endl;
+ std::cout << PROJECT_NAME << " " << VERSION << ", revision " << GIT_REVISION
+ << ", distributed by: " << DISTRIBUTOR << std::endl;
} else {
std::cout << "Usage: " << argv[0] << " [-t | --terse] [-s | --short]" << std::endl;
return arg != "-h" && arg != "--help";