答案1
您是否尝试过为此使用 cron 作业? Cron 提供了一个@reboot
参数来安排每次计算机启动时运行的任务。它的使用方式如下:crontab
在终端中打开,如下所示:
crontab -e
它会询问您要使用哪个文本编辑器,然后在文件底部您可以编写以下内容
# assuming your ~/.Xmodmap file is a list of keycodes that xmodmap can read
@reboot xmodmap /home/<username>/.Xmodmap
使用完整路径很重要,因为该$HOME
变量不会在启动时初始化。
希望这有帮助!