如何在 Ubuntu 18.04 上自动启动命令?

如何在 Ubuntu 18.04 上自动启动命令?

我有一个像这样的小命令

xinput set-prop "XP-PEN G430S Pen Pen (0)" --type=float "Coordinate Transformation Matrix" 1.155756, 0.000000, 0.000000, 0.000000, 1.529, 0.000000, 0.000000, 0.000000, 1.000000

要使用 XP-PEN 平板电脑,每次启动 PC 时都必须自动启动它。我该怎么做?

答案1

使用i3配置文件启动应用程序。

它位于此处:~/.config/i3/config

更多内容请参阅官方文档:https://i3wm.org/docs/userguide.html#configuring

只需添加以下几行:

exec --no-startup-id "xinput set-prop 'XP-PEN G430S Pen Pen (0)' --type=float 'Coordinate Transformation Matrix' 1.155756, 0.000000, 0.000000, 0.000000, 1.529, 0.000000, 0.000000, 0.000000, 1.000000"

答案2

从命令行运行gnome-session-properties并在那里添加启动命令。或者您也可以使用 crontab,请参阅:

在 crontab 上启动时运行命令

相关内容