14 lines
314 B
Plaintext
14 lines
314 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
#
|
||
|
# Copy only new files from /etc/xdg/autostart/
|
||
|
config_dir=${XDG_CONFIG_HOME:-$HOME/.config}
|
||
|
rsync -aq --ignore-existing /etc/xdg/autostart/ $config_dir/autostart
|
||
|
|
||
|
# source Mabox main config file
|
||
|
. $HOME/.config/mabox/mabox.conf
|
||
|
|
||
|
# Run mwelcome if not disaled
|
||
|
|
||
|
[ $show_welcome == true ] && mwelcome
|