2023-09-04 14:54:35 +00:00
|
|
|
#!/bin/sh
|
2023-10-23 22:44:47 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2023-10-23 22:46:49 +00:00
|
|
|
# Copyright (C) 2023-present - The JELOS Project (https://github.com/JustEnoughLinuxOS)
|
2023-09-04 14:54:35 +00:00
|
|
|
|
|
|
|
. /etc/profile.d/001-functions
|
|
|
|
|
|
|
|
### Set the default device configuration
|
|
|
|
cat <<EOF >/storage/.config/profile.d/001-device_config
|
|
|
|
DEVICE_BASE_TDP="15w"
|
2023-09-05 18:25:37 +00:00
|
|
|
DEVICE_LED_CONTROL="false"
|
2023-09-13 09:21:22 +00:00
|
|
|
DEVICE_LED_BRIGHTNESS="false"
|
2023-09-05 18:25:37 +00:00
|
|
|
DEVICE_HAS_FAN="false"
|
|
|
|
DEVICE_VOLUMECTL="true"
|
2023-09-04 14:54:35 +00:00
|
|
|
DEVICE_BRIGHTNESS="hardware"
|
|
|
|
EOF
|