基本完成第一版

This commit is contained in:
2023-06-28 16:22:31 +08:00
parent b853640a03
commit 779e303147
32 changed files with 503 additions and 27 deletions

8
deb/DEBIAN/postrm Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
# 删除软件缓存(留着也没什么用了)
# 缓存目录:~/.cache/deepin-wine-runner
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
rm -rf /usr/share/applications/gx-env-*.desktop
else
echo "非卸载,跳过清理"
fi