mirror of
https://github.com/rydesun/dotfiles.git
synced 2025-12-26 14:44:58 +08:00
21 lines
431 B
Bash
21 lines
431 B
Bash
#!/bin/sh
|
|
|
|
# 加载其他软件包提供的配置
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
[ -x "$f" ] && source "$f"
|
|
done; unset f
|
|
fi
|
|
|
|
# 加载Xresources
|
|
[ -f ~/.xresources ] && xrdb -merge ~/.xresources
|
|
|
|
# 加载xprofile
|
|
[ -f ~/.xprofile ] && source ~/.xprofile
|
|
|
|
if [[ -n "$@" ]]; then
|
|
# 启动锁屏程序
|
|
xss-lock -- betterlockscreen -l &
|
|
|
|
exec "$@"
|
|
fi
|