我想在每次启动 PC 时在登录之前运行一些脚本。我将脚本作为greeter-setup-script 添加到 lightdm.conf 中。但是,所有脚本都以 root 身份运行!我想使用普通用户帐户(例如 myUserName)来运行这些脚本。可以这样做吗?我尝试在脚本中包含“su - myUserName”,但它不起作用...
答案1
su [username] -c [command to run]
将上面的括号实例替换为:
username = your user name
script/command to run = The name of the script you're want to run as you.