在 lightdm 启动时设置伽马

在 lightdm 启动时设置伽马

我想在启动 lig​​htdm 时设置以下内容:xrandr --output eDP1 --gamma 0.8:0.8:0.65。

我努力了:

  • 创建启动应用程序(有效,但仅在登录后才有效。
  • 在 /usr/share/lightdm/lightdm.conf.d/10-custom.conf 中设置 display-setup-script (同时使用 xrandr + bashscript.sh + xgamma)
  • 在监视器下使用 gamma 自定义 xorg.conf。

真的不知道我做错了什么。我在笔记本电脑(英特尔 GPU)和台式机(nvidia 驱动程序)上都试过了。

答案1

以下是我最近使用的方法。我遇到了类似的问题,想在我的 4k 显示器上设置显示缩放比例,因为字体太小了。

首先,在config 文件夹lightdm.conf中创建一个文件lightdm

/etc/lightdm/lightdm.conf

[SeatDefaults]
display-setup-script = /etc/lightdm/monitor-config.sh

然后monitor-config.sh在同一文件夹中创建脚本

/etc/lightdm/monitor-config.sh

#!/bin/sh
xrandr --output HDMI-0 --scale 0.7x0.7

完成此操作后,重新启动 lig​​htdm,您应该会看到更改已应用

sudo service lightdm restart

                                             

相关内容