Package Details: linuxqq 4:3.2.8_23873-1

Git Clone URL: https://aur.archlinux.org/linuxqq.git (read-only, click to copy)
Package Base: linuxqq
Description: New Linux QQ based on Electron
Upstream URL: https://im.qq.com/linuxqq/
Keywords: electron linuxqq qq tencent
Licenses: LicenseRef-QQ
Conflicts: linuxqq-nt-bwrap
Submitter: redchenjs
Maintainer: Integral (Purofle)
Last Packager: Integral
Votes: 83
Popularity: 5.36
First Submitted: 2019-10-24 14:27 (UTC)
Last Updated: 2024-05-17 18:26 (UTC)

Pinned Comments

Integral commented on 2023-03-14 09:20 (UTC)

目前通过删除 linuxqq 包自带的 libvips 临时解决了浏览图片时崩溃的问题 PS:感谢 @ayatale 的建议

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 25 Next › Last »

Integral commented on 2023-10-15 15:54 (UTC)

@BryanLiang 已添加 :)

BryanLiang commented on 2023-10-15 15:03 (UTC)

这个包可以添加qq-flags.conf的支持吗?就像chromium那样,这样传给QQ的参数就可以写到这个文件里面。

我尝试修改了linuxqq.sh脚本

#!/bin/bash

if [ -d ~/.config/QQ/versions ]; then
    find ~/.config/QQ/versions -name sharp-lib -type d -exec rm -r {} \; 2>/dev/null
fi

rm -rf ~/.config/QQ/crash_files/*

XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}

if [[ -f "${XDG_CONFIG_HOME}/qq-flags.conf" ]]; then
    mapfile -t QQ_USER_FLAGS <<< "$(grep -v '^#' "${XDG_CONFIG_HOME}/qq-flags.conf")"
    echo "User flags:" "${QQ_USER_FLAGS[@]}"
fi

exec /opt/QQ/qq "${QQ_USER_FLAGS[@]}" "$@"

BryanLiang commented on 2023-09-23 10:20 (UTC)

linuxqq.sh的sha256忘记更新了

bczhc commented on 2023-09-12 01:35 (UTC)

还有一个问题,有用fcitx5-rime的可以看一下。首先rime配置了一个key_binder,形如{ accept: "Control+h", toggle: extended_char, when: composing }这样的,它会在输入法composing状态下接受Ctrl+H。但在这个QQ里composing时,按Ctrl+H,QQ直接触发它的快捷键了,隐藏掉了。我不知道这是fcitx5的问题还是qq的问题。按说正常应用都是没问题的,输入法会接替掉按键事件,下面的应用得不到Ctrl+H。就这个QQ不正常。-_-

bczhc commented on 2023-09-12 01:30 (UTC) (edited on 2023-09-12 09:40 (UTC) by bczhc)

@momijineko (comment-899258) 关掉嵌入确实没问题了。但不关的话,顶屏就有问题,不知道腾讯这个文本框怎么回事,到现在都没修。(后修正:啊这,刚发现好像最新版本给修了)

@Integral (comment-905644) 好像跟Chromium有关,谷歌“hangul font overlap”就有很多。但就这个qq里有,Chromium和同是Electron应用的Icalingua++里都没问题。

cjc7373 commented on 2023-09-08 02:13 (UTC)

@HuaiYu 参考 https://wiki.archlinux.org/title/XDG_Desktop_Portal 安装与桌面环境对应的后端

entropy-tree commented on 2023-09-08 01:32 (UTC)

sudo chattr +i ~/.config/QQ/crash_files

zxp19821005 commented on 2023-09-02 17:35 (UTC)

建议将

bsdtar -xvf data.tar.xz -C "${pkgdir}/"

改为

bsdtar -xf data.tar.xz -C "${pkgdir}/"

以减少安装时的不必要的解压信息输出。