📌  相关文章
📜  更改亮度 ubuntu 20.04 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:45.809000             🧑  作者: Mango

代码示例1
# xrandr will list the displays you have connected eg HDMI-0 or DP-0 ...
xrandr 
# here's an example of changing an HDMI display 
# I have connected to 90% brightness
xrandr --output HDMI-0 --brightness 0.90
# --output is for the name of display
# --brightness is brightness ratio with 1.0 being 100%