mirror of
https://github.com/nickrunning/wechat-selkies.git
synced 2026-05-09 08:28:24 +00:00
7 lines
276 B
Bash
Executable File
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 & |