7 lines
136 B
Bash
Executable file
7 lines
136 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cache="$HOME/.local/state/xdg-desktop-portal-termfilechooser/last_selected"
|
|
if [ -f "${cache}" ]; then
|
|
rm "${cache}"
|
|
fi
|
|
|