This commit is contained in:
2023-07-21 09:50:17 +08:00
parent f886018e06
commit 7b66181ecb
14 changed files with 210 additions and 0 deletions

9
src/usr/bin/pack Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [ "$1" != "" ];then
opt=$1
else
opt=`pwd`
fi
dpkg-deb -Z xz -b $opt $opt/..
notify-send `basename $opt`打包完成 -i /usr/share/icons/uos-packaging-tools.png
exit