Package Details: windterm-bin 2.6.1-6

Git Clone URL: https://aur.archlinux.org/windterm-bin.git (read-only, click to copy)
Package Base: windterm-bin
Description: A Quicker and better SSH/Telnet/Serial/Shell/Sftp client for DevOps.(Prebuilt version)
Upstream URL: https://github.com/kingToolbox/WindTerm
Keywords: SSH terminal WindTerm
Licenses: Apache-2.0
Conflicts: windterm
Provides: windterm
Submitter: sakura1943
Maintainer: sakura1943 (zxp19821005)
Last Packager: zxp19821005
Votes: 8
Popularity: 0.036785
First Submitted: 2022-01-01 06:07 (UTC)
Last Updated: 2025-01-10 10:11 (UTC)

Latest Comments

1 2 3 Next › Last »

zxp19821005 commented on 2025-01-10 10:17 (UTC)

@mxy221 Thanks for your feedback, it's my mistake, fixed now.

mxy221 commented on 2025-01-10 09:59 (UTC)

In the directory /usr/lib/windterm/vendors/lrzsz,both rz and sz have no executable bit, how about adding that in PKGBUILD file?

zxp19821005 commented on 2025-01-10 07:40 (UTC)

@yifwon Thanks for your feedback, now use openssl instead of openssl-1.1

yifwon commented on 2025-01-10 02:22 (UTC)

suggesting replace openssl-1.1 with openssl as depends, I've tested and it works well.

yifwon commented on 2024-11-19 13:00 (UTC) (edited on 2024-11-19 13:01 (UTC) by yifwon)

another suggestion: modify /usr/lib/${pkgname%-bin}/profiles.config as backup option, in case each time update the package, this file cleans up and the PATH will need to be set when windterm starts next time.

zxp19821005 commented on 2024-11-19 12:03 (UTC)

@yifwon Thanks for your help , I've changed it , and it works fine now.

yifwon commented on 2024-11-19 07:16 (UTC) (edited on 2024-11-19 07:49 (UTC) by yifwon)

diff --git a/PKGBUILD b/PKGBUILD
index d526074..7cfecdc 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -54,4 +54,5 @@ package() {
     cp -Pr --no-preserve=ownership "${srcdir}/${_pkgname}_${pkgver}/"* "${pkgdir}/usr/lib/${pkgname%-bin}"
     install -Dm644 "${srcdir}/${_pkgname}_${pkgver}/${pkgname%-bin}.desktop" -t "${pkgdir}/usr/share/applications"
     install -Dm644 "${srcdir}/${_pkgname}_${pkgver}/${pkgname%-bin}.png" -t "${pkgdir}/usr/share/pixmaps"
+    install -Dm666 /dev/null "${pkgdir}/usr/lib/${pkgname%-bin}/profiles.config"
 }

attributes should be set as: a+r+w, or everytime windterm starts, path cannot be read from config file.

zxp19821005 commented on 2024-11-19 07:08 (UTC)

@yifwon Do you mean that?

$ cat /usr/lib/windterm/profiles.config
{
    "path" : "/dev/null"
}

yifwon commented on 2024-11-19 03:37 (UTC)

@mxy221 @zxp19821005 install /dev/null to /usr/lib/windterm/profiles.config to create a null file and give a+w attributes can solve this problem.