summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Perepelitsa <roman.perepelitsa@gmail.com>2023-06-15 09:44:50 +0300
committerRoman Perepelitsa <roman.perepelitsa@gmail.com>2023-06-15 09:48:43 +0300
commit360dcd3907a7556a2ffa841380142e1f9dc6ec33 (patch)
tree9a9fce025dc3e09b1605a5cdc018f7b344431208
parent944f52fc430259ff49f497f3516a3ddfb45a0a6b (diff)
respect XDG_DATA_HOME when looking for the timewarrior data directory (#2344)
The logic for finding the data directory is as follows: 1. Find the root directory: 1.1 If TIMEWARRIORDB is set, use that. 1.2 Else if ~/.timewarrior is an existing directory, use that. 1.3 Else if XDG_DATA_HOME is set, use $XDG_DATA_HOME/timewarrior. 1.4 Else use ~/.local/share/timewarrior. 2. Append "/data" to the root directory.
-rw-r--r--internal/p10k.zsh5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index ca735e50..a6cd9afe 100644
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -5084,8 +5084,11 @@ function _p9k_timewarrior_clear() {
}
function prompt_timewarrior() {
+ local dir
+ [[ -n ${dir::=$TIMEWARRIORDB} || -n ${dir::=~/.timewarrior}(#qN/) ]] ||
+ dir=${XDG_DATA_HOME:-~/.local/share}/timewarrior
+ dir+=/data
local -a stat
- local dir=${TIMEWARRIORDB:-~/.timewarrior}/data
[[ $dir == $_p9k_timewarrior_dir ]] || _p9k_timewarrior_clear
if [[ -n $_p9k_timewarrior_file_name ]]; then
zstat -A stat +mtime -- $dir $_p9k_timewarrior_file_name 2>/dev/null || stat=()