Files
wechat-selkies/root/scripts/start.sh
2025-10-21 18:01:18 +08:00

7 lines
276 B
Bash
Executable File

#!/bin/bash
# start WeChat application in the background if wechat exists
if [ -f /usr/bin/wechat ]; then nohup /usr/bin/wechat > /dev/null 2>&1 & fi
# start window switcher application in the background
nohup sleep 2 && python /scripts/window_switcher.py > /dev/null 2>&1 &