From c30b58c5fee65d370f6081d26519de348515a09f Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Sun, 14 Sep 2025 13:57:22 -0500 Subject: small bug in tmux cfg --- modules/terminal/hjem/programs/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/terminal/hjem/programs/tmux.nix b/modules/terminal/hjem/programs/tmux.nix index e20d041..6ff485c 100644 --- a/modules/terminal/hjem/programs/tmux.nix +++ b/modules/terminal/hjem/programs/tmux.nix @@ -30,7 +30,7 @@ width=$(tmux display -p "#{pane_width}") height=$(tmux display -p "#{pane_height}") - if (( $(echo "$width / $height > 2.5" | bc -l) )); then + if (( $(echo "$width / $height > 2.5" | ${pkgs.bc}/bin/bc -l) )); then tmux split-window -h "$@" else tmux split-window -v "$@" -- cgit v1.3.1