diff options
| author | Robert Günzler <r@gnzler.io> | 2022-11-30 15:49:18 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-11-30 15:49:18 +0100 |
| commit | 602f7b1c6c4da776337c7c8622da9f1456fd7b5c (patch) | |
| tree | b2070e9ee2f252f7b5c5e9e80aac9aced04b58d8 /bin | |
| parent | 5daa46da6710c1da5cc004f4b90b2c668b409294 (diff) | |
bin/lock: use XDG_DATA_HOME
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/lock | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lock b/bin/lock index 7aee163..f4110e7 100755 --- a/bin/lock +++ b/bin/lock @@ -32,7 +32,7 @@ else fx_args=(--image="${images[@]}") fi -for sh in "${HOME}"/.local/share/lock.d/*.sh; do +for sh in "${XDG_DATA_HOME}"/lock.d/*.sh; do # shellcheck disable=1090 if [ -r "$sh" ]; then . "$sh" || true; fi done |