mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 18:18:28 +08:00
18 lines
580 B
Bash
18 lines
580 B
Bash
#!/bin/bash
|
|
if [ ! -f "$WINEPREFIX/../.QQ_run" ]; then
|
|
debug_log "first run time"
|
|
$SHELL_DIR/add_hotkeys
|
|
####似乎是给dde-control-center添加快捷键
|
|
$SHELL_DIR/fontconfig
|
|
####暂时无法得知用途和用法
|
|
# If the bottle not exists, run reg may cost lots of times
|
|
# So create the bottle befor run reg
|
|
env WINEPREFIX="$WINEPREFIX" $WINE_CMD uninstaller --list
|
|
touch $WINEPREFIX/../.QQ_run
|
|
fi
|
|
|
|
CallProcess "$@"
|
|
|
|
#disable Tencent MiniBrowser
|
|
_DeleteRegistry "HKCU\\Software\\Tencent\\MiniBrowser"
|