From e0537d5fd19d3e83220179e77dd888480704d0c5 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Mon, 24 Nov 2025 22:34:44 +0000 Subject: [PATCH] Don't use >= in TMUX_VERSION comparisons --- tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.conf b/tmux.conf index e8dbbe2..8db6ee6 100644 --- a/tmux.conf +++ b/tmux.conf @@ -66,7 +66,7 @@ bind a run-shell ~/.local/share/tmux/layouts/window-auto if -b '[ "`uname`" = "Darwin" ]' \ 'set -g default-command "reattach-to-user-namespace -l $SHELL"' -if -b '[ "$TMUX_VERSION" >= 3.2 ]' { +if -b '[ "$TMUX_VERSION" > "3.2" ]' { # Open a popup with running the default shell bind T display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E $SHELL # Open a popup with session creator/switcher