diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-18 12:06:50 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-18 12:06:50 +0000 |
commit | 080baddeef577bfa1828e552aade8325d54483c6 (patch) | |
tree | b6d6a72c33ec38ccea63b4b258f28e0ba35fad32 | |
parent | 88c90466a46ed89f8c8640c37627faf8b607b101 (diff) | |
download | dotfiles-080baddeef577bfa1828e552aade8325d54483c6.tar.gz |
Fix tmux status line time
-rw-r--r-- | nix-conf/home/includes/linux-server.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix-conf/home/includes/linux-server.nix b/nix-conf/home/includes/linux-server.nix index 427b167..9b0b353 100644 --- a/nix-conf/home/includes/linux-server.nix +++ b/nix-conf/home/includes/linux-server.nix @@ -45,7 +45,7 @@ set -g status-interval 1 set -g status-left "#[fg=yellow]#h#[default]" - set -g status-right "#[fg=blue]%a%d/%m#[fg=yellow]%H:%M:%S" + set -g status-right "#[fg=blue]%a%d/%m#[fg=yellow]#(TZ="Europe/London" date +%%H:%%M:%%S)" ''; }; |