5dbd06554b
* Add ES theme "Minimal", enable ES theme "Terminal" * Update Thememaster * Bump the CPU clock to 1.992GHz
10 lines
247 B
Bash
Executable file
10 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present kkoshelev (https://github.com/kkoshelev)
|
|
|
|
. /etc/profile
|
|
|
|
if [ "$(get_setting wireguard.up)" == "1" ]
|
|
then
|
|
nohup wg-quick up /storage/.config/wireguard/wg0.conf &
|
|
fi
|