add scripts and config

This commit is contained in:
2023-07-12 17:02:27 +07:00
parent 520fb7cd75
commit 4b1d0cd562
12 changed files with 365 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
if [[ $1 == --daemon ]]; then
until pgrep gvfs >/dev/null; do
sleep 1
done
exec /usr/bin/Thunar "$@"
else
exec /usr/bin/Thunar "$@"
fi