diff options
author | Ayush Agarwal <ayushnix@fastmail.com> | 2022-03-08 21:59:16 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2022-03-08 21:59:16 +0530 |
commit | 4903b3137be9c4d7f17c14f10d8ea28218b6fdcc (patch) | |
tree | 26dfb3e59a0bc83cf88128a75fe8e2fb173f0c85 /tessen | |
parent | 327bb6598bc2a9daa7ebbf32edfc68e2cdeb2ab2 (diff) |
fix: set the cache file to `/dev/null`
Instead of setting the cache file to `/dev/null`, this silly mistake
ended up creating a directory with a name of literal whitespace
containing a dir called `dev` and a file inside `dev` called `null`
Diffstat (limited to 'tessen')
-rwxr-xr-x | tessen | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -544,7 +544,7 @@ validate_dmenu_backend() { ;; wofi) dmenu_backend="wofi" - dmenu_backend_opts=('-d' '-k /dev/null') + dmenu_backend_opts=('-d' '-k' '/dev/null') ;; dmenu) dmenu_backend="dmenu" |