1
jwangkun OP 欢迎大家来补充
|
2
wildlife 2022-10-10 10:42:19 +08:00 1
Macast ( DLNA 投屏, https://github.com/xfangfang/Macast )
Dingtalk ( 原生钉钉, https://page.dingtalk.com/wow/z/dingtalk/simple/ddhomedownlaod ) RustDesk ( 远程桌面, https://github.com/rustdesk/rustdesk ) Aliyunpan ( 第三方阿里云盘, https://github.com/liupan1890/aliyunpan ) Charles ( 抓包软件, https://www.charlesproxy.com ) BeyondCompare ( Diff 工具, https://www.scootersoftware.com/download.php ) ClashForWindows ( Clash 客户端, https://github.com/Fndroid/clash_for_windows_pkg ) balenaEtcher ( 图形化烧录工具, https://github.com/balena-io/etcher ) FlameShot ( 截图工具, https://github.com/flameshot-org/flameshot ) --- 源中的软件 KDE Connect ( 电脑手机互传 ) Transmission ( BT/PT ) avahi-discover ( mDNS 浏览器 ) KolourPaint ( 简易画图 ) |
3
wildlife 2022-10-10 10:44:17 +08:00
第三方网易云音乐 ( https://github.com/gmg137/netease-cloud-music-gtk )
|
5
wildlife 2022-10-10 11:35:08 +08:00
@jwangkun 我打包好了最新版,直接 dpkg -i 安装就行,后续只需 github 下载最新 release 解压替换 deb 中的 /opt/clash 即可
提取链接: https://cp.ciding.cc/s/gncj 提取码:gncj 有效期:24 小时 SHA256SUM:c69ea4b2846b20931b38819df1e81259fd5959f6ca8abc1596a1de74ef841cbc |
6
wildlife 2022-10-10 11:39:06 +08:00
打包解包脚本,需要安装 fakeroot
打包 ./deb.sh ./xxx/ 解包 ./deb.sh ./xxx.deb ```shell #!/bin/bash set -eu -o pipefail if [ -d "$1" ]; then echo 'packing...' name=$(< "$1/DEBIAN/control" grep Package | cut -d ' ' -f 2) version=$(< "$1/DEBIAN/control" grep Version | cut -d ' ' -f 2) arch=$(< "$1/DEBIAN/control" grep Architecture | cut -d ' ' -f 2) fakeroot dpkg-deb -b -z9 "$1" "${name}-${version}_${arch}_p.deb" echo "${name}-${version}_${arch}_p.deb" elif [ -f "$1" ]; then echo "unpacking..." dpkg-deb -R "$1" "${1%.*}" echo "${1%.*}" else echo "unsupported action" fi ``` |
8
jwangkun OP 没有人更新么
|