如何自动运行 redshift

如何自动运行 redshift

我想在 Ubuntu 16.04 启动后自动启动 redshift 应用程序。

这可以通过在 中创建一个 *.desktop 文件来实现.config/autostart。但是,它让我的终端窗口保持打开状态,这非常烦人。

我想在不打开终端窗口的情况下启动 redshift。我该怎么做?

我的 redshift.desktop 目前看起来像这样:

[Desktop Entry]
Version=1.0
Name=Redshift
GenericName=Color temperature adjustment
Comment=Color temperature adjustment tool
Exec=redshift &
Icon=redshift
Terminal=true
Type=Application
NoDisplay=true

答案1

Terminal=true将以下内容改为Terminal=false。它不需要在终端内启动

答案2

您可以安装redshift-gtk它并将其设置为在用户登录时自动启动。

运行以下命令进行安装:

sudo apt update
sudo apt install redshift-gtk

在您的应用程序中搜索 redshift 并启动它,不要忘记将其设置为自动启动。

如果你是 kde 用户,你可以安装plasma-applet-redshift-control

sudo apt install plasma-applet-redshift-control

相关内容