cache dir should be at root, logs at tmp

This commit is contained in:
Jorge Morante 2024-01-12 10:22:30 +01:00
parent 8cfc2bd1ad
commit 680d801770
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ module Fingers::Dirs
TMP = Path[File.dirname(File.tempname)]
ROOT = TMP / "tmux-#{TMUX_PID}"
LOG_PATH = ROOT / "fingers.log"
CACHE = TMP / "tmux-fingers"
LOG_PATH = TMP / "fingers.log"
CACHE = ROOT / "tmux-fingers"
CONFIG_PATH = CACHE / "config.json"
SOCKET_PATH = CACHE / "fingers.sock"