4 releases
0.1.3 | May 7, 2023 |
---|---|
0.1.2 | May 7, 2023 |
0.1.1 | May 7, 2023 |
0.1.0 | May 7, 2023 |
#486 in Date and time
38 downloads per month
14KB
148 lines
A utility based on tmux hooks in order to track time attached to each session
Install:
- Clone the repository
- Run
cargo build --release
3 .Move./target/release/tmux-time-tracker
into you $PATH - Add the following to your tmux.conf:
set-hook -g client-attached 'run-shell "output=$(tmux-time-tracker geth #{session_name}); tmux-time-tracker attach #{session_name}; tmux display-message \"Total time: \$output\""' set-hook -g client-detached 'run-shell "tmux-time-tracker detach"' set-hook client-session-changed 'run-shell "tmux-time-tracker detach; tmux-time-tracker attach #{session_name}; output=$(tmux-time-tracker geth #{session_name}); tmux display-message \"Total time: \$output\""'
WARNING: does not work correctly if you attach to the same tmux instance from multiple clients
lib.rs
:
tmux_time_tracker
A CLI program meant to hook into Tmux Allows for tracking the time spent attached to Tmux session
Dependencies
~38–50MB
~1M SLoC