Fluxbox 启动文件不工作

Fluxbox 启动文件不工作

我根据说明将应用程序放入我的 fluxbox 启动文件中,但是除了 fluxbox 之外没有任何程序启动。

无论我尝试什么应用程序都没有关系,所以这不是应用程序的问题。

这是我的启动文件:

#!/bin/sh
#
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.

# Change your keymap:
xmodmap "/home/josh/.Xmodmap"

# Applications you want to run with fluxbox.
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
tint2 &
tilda &

# And last but not least we start fluxbox.
# Because it is the last app you have to run it with ''exec'' before it.

exec fluxbox
# or if you want to keep a log:
# exec fluxbox -log "/home/josh/.fluxbox/log"

我也尝试过诸如“touch ~/testwoked”之类的测试,但没有任何效果。

该文件是否可执行并没有什么区别。

答案1

当您要启动 fluxbox 时,您需要使用startfluxbox而不是。fluxbox

(您没有说明如何启动 fluxbox,但我猜测这是基于某种经验)

相关内容