Bug Description
The definition of the path to the lock file is as follows:
|
const LOCK_FILE2: &str = constcat::concat!(APPID, "-db", ".lock"); |
This ends up putting it to wherever the applet is ran from, which is annoying to clean up later.
Expected Result
Always store the lock file to <XDG_STATE_HOME>/<APPID>-db.lock
Bug Description
The definition of the path to the lock file is as follows:
clipboard-manager/src/db/sqlite_db.rs
Line 31 in b4d8e86
This ends up putting it to wherever the applet is ran from, which is annoying to clean up later.
Expected Result
Always store the lock file to
<XDG_STATE_HOME>/<APPID>-db.lock