diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-01-09 07:30:05 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-01-09 07:30:05 +0530 |
commit | 0d64141484738542b5d3bd6c8ba885d0ca804e56 (patch) | |
tree | 94ae45ee03b120d7b430ce52dab05144e6217c88 | |
parent | 024e1668bae906859fc55f891fb2909f92d173d2 (diff) |
modules/tmux: right align status
-rw-r--r-- | modules/tmux.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/tmux.nix b/modules/tmux.nix index 77e942d..46b57f0 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -34,7 +34,8 @@ # not eye candy set -g status-style "bg=default fg=7" set -g status-left "" - set -g status-right "#{session_name}" + set -g status-justify right + set -g status-right " < #{session_name}" ''; }; } |