16 lines
447 B
Bash
Executable file
16 lines
447 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
. /etc/profile
|
|
|
|
# Configure default contrast saturation and hue values
|
|
for PROPERTY in brightness contrast saturation hue
|
|
do
|
|
MYVAL=$(get_setting display.${PROPERTY})
|
|
if [ -z "${MYVAL}" ]
|
|
then
|
|
MYVAL=$(drm_tool list | sed -n '/Connector: 133/,$p' | awk '/'${PROPERTY}'/ {print $5}')
|
|
fi
|
|
paneladj ${PROPERTY} ${MYVAL}
|
|
done
|