From ded6a686fd7966316a2bbe311ef4d2b92192f0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Wed, 9 Jul 2025 13:03:14 +0200 Subject: [PATCH] feat: set window title --- src/main.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.sh b/src/main.sh index a89f666..1be7c08 100644 --- a/src/main.sh +++ b/src/main.sh @@ -2,6 +2,9 @@ set -eu +# Set terminal title +printf '\033]0;%s\007' "fzf-vjour | Journal, notes, and tasks" + # Always load functions # Helper functions . "sh/helper.sh"