aboutsummaryrefslogtreecommitdiff
path: root/tessen
diff options
context:
space:
mode:
authorAyush Agarwal <ayushnix@fastmail.com>2022-03-08 21:59:16 +0530
committerAyush Agarwal <ayushnix@fastmail.com>2022-03-08 21:59:16 +0530
commit4903b3137be9c4d7f17c14f10d8ea28218b6fdcc (patch)
tree26dfb3e59a0bc83cf88128a75fe8e2fb173f0c85 /tessen
parent327bb6598bc2a9daa7ebbf32edfc68e2cdeb2ab2 (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-xtessen2
1 files changed, 1 insertions, 1 deletions
diff --git a/tessen b/tessen
index fb034ca..8efbe4c 100755
--- 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"