|
openbox autostart.sh文件配置无效,conky,tit2,pcmanfm不能自动启动
我对autostart.sh 文件的配置代码也不太懂
##################################
官网上的参照:
- # Run the system-wide support stuff
- . $GLOBALAUTOSTART
- # Programs to launch at startup
- hsetroot ~/wallpaper.png &
- xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &
- # SCIM support (for typing non-english characters)
- export LC_CTYPE=ja_JP.utf8
- export XMODIFIERS=@im=SCIM
- export GTK_IM_MODULE=scim
- export QT_IM_MODULE=scim
- scim -d &
- # Programs that will run after Openbox has started
- (sleep 2 && fbpanel) &
复制代码
##################################
网上也有有两种格式:
111111种是"kill"形式:
- killall conky > /dev/null 2>&1
- onky &
复制代码
222222种是"if_which_目录"形式:
- if which /usr/lib/openbox/xdg-autostart >/dev/null; then
- /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
- fi
复制代码
还有就是下面这句是不是在对所以用户都适用的意思阿!
- ### exec the global settings ###
- . $GLOBALAUTOSTART
复制代码
##################################
- 我的autostart.sh 文件代码如下:(我在家目录下的.config/openbox/下和/etc/xdg/openbox下都有相同的配置文件)
- # Preload stuff for KDE apps
- if which start_kdeinit >/dev/null; then
- LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
- fi
- # Run XDG autostart things. By default don't run anything desktop-specific
- # See xdg-autostart --help more info
- DESKTOP_ENV=""
- if which /usr/lib/openbox/xdg-autostart >/dev/null; then
- /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
- fi
复制代码
##############以下部分使我参照网上添加的代码#############
- killall conky > /dev/null 2>&1
- conky &
- ### set panel ###
- killall tint2 > /dev/null 2>&1
- tint2 &
- killall pcmanfm > /dev/null 2>&1
- pcmanfm &
复制代码
##################################
但进入openbox,conky和tit2不能自动启动,不知为什么,希望成功配置的朋友给些帮助,不胜感激!!!!
谢谢阿!!!!
################################## |
|