tessen

default description
git clone https://git.awy.one/tessen.git
Log | Files | Refs | README | LICENSE

commit 4903b3137be9c4d7f17c14f10d8ea28218b6fdcc
parent 327bb6598bc2a9daa7ebbf32edfc68e2cdeb2ab2
Author: Ayush Agarwal <ayushnix@fastmail.com>
Date:   Tue,  8 Mar 2022 21:59:16 +0530

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:
Mtessen | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tessen b/tessen @@ -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"