可以禁用gsd-color进程吗?这个过程一直在用xrandr重置我的亮度,我想在启动时禁用它,尝试如下:
在此发现:https://github.com/LordAmit/Brightness/issues/102
但遗憾的是它不起作用了!
发布于 2022-09-11 15:43:16
注意:我在Ubuntu22.04上测试了我的答案。这个问题是从2021年开始的,我不知道我的答案是否适用于当时的Ubuntu。
在Ubuntu22.04上,gsd-color由称为org.gnome.SettingsDaemon.Color.service的systemd服务启动。
您需要阻止systemd启动服务。要做到这一点,请像这样运行systemctl mask:
systemctl --user mask --now org.gnome.SettingsDaemon.Color.service
# If the service is successfully masked, this should print "masked".
systemctl --user is-enabled org.gnome.SettingsDaemon.Color.service若要撤消蒙面服务,请按以下方式运行systemctl unmask,然后再次登录:
systemctl --user unmask org.gnome.SettingsDaemon.Color.service
# If the service is successfully unmasked, this should print "static".
systemctl --user is-enabled org.gnome.SettingsDaemon.Color.servicehttps://askubuntu.com/questions/1362608
复制相似问题