Package Details: watt-toolkit-bin 3.0.0.rc.12-2

Git Clone URL: https://aur.archlinux.org/watt-toolkit-bin.git (read-only, click to copy)
Package Base: watt-toolkit-bin
Description: 一个开源跨平台的多功能Steam工具箱。
Upstream URL: https://steampp.net/
Keywords: steam steam++ watt-toolkit
Licenses: GPL-3.0-only
Conflicts: steam++, watt-toolkit
Provides: steam++, watt-toolkit
Submitter: ZhangHua
Maintainer: ZhangHua
Last Packager: ZhangHua
Votes: 10
Popularity: 0.020212
First Submitted: 2022-05-09 15:56 (UTC)
Last Updated: 2024-11-28 11:52 (UTC)

Pinned Comments

detian commented on 2024-08-16 13:16 (UTC)

调整后的启动脚本

#!/usr/bin/env bash

Class="Steam++"
Image="/usr/share/icons/hicolor/512x512/apps/watt-toolkit.png"

dotnet "/usr/lib/watt-toolkit/${Class}.dll" "$@" & PID=$!
timeout 10 xdotool search --sync --all --pid "$(pgrep -P $PID)" --class "${Class}" \
    exec xseticon -class "${Class}" "${Image}" &

wait $PID

detian commented on 2024-08-16 11:37 (UTC)

找到了个方法,修改窗口的图标 xseticon -class Steam++ /usr/share/icons/hicolor/512x512/apps/watt-toolkit.png
https://aur.archlinux.org/packages/xseticon-detiam 就是每次启动都得整一次

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

plokid commented on 2021-12-22 05:32 (UTC)

你似乎把x86和aarch64安装包放反了

ZhangHua commented on 2021-12-22 00:47 (UTC)

@memorydream 已修正

memorydream commented on 2021-12-21 17:19 (UTC) (edited on 2021-12-21 17:20 (UTC) by memorydream)

看上去desktop只是执行了Steam++的二进制文件,而不是执行Steam++.sh,那可以考虑将Exec=/usr/bin/steam++改为Exec=LANG=en_US.UTF-8 && /usr/bin/steam++ 来和上游的Steam++.sh保持一致,这样可以规避找不到字体导致的崩溃