Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试设置我的 i3 配置文件,以便在我登录时自动启动 calcurse。我添加了该行
exec --no-startup-id calcurse
但它不起作用。
如果您想在启动时在打开的窗口中使用 calcurse,请尝试exec --no-startup-id [xterm/urxvt/whatever_terminal_you_use] -e calcurse. (大多数终端用于-e执行命令,如果不起作用,请查看终端帮助)
exec --no-startup-id [xterm/urxvt/whatever_terminal_you_use] -e calcurse
-e
如果您希望 calcurse 在后台运行(以获取事件通知,并且您仍然可以通过在终端中执行 calcurse 来访问界面),请使用exec --no-startup-id calcurse --daemon
exec --no-startup-id calcurse --daemon