summaryrefslogtreecommitdiff
path: root/skel/.config/autostart/autostart.sh
blob: 3ac5a247853d93a787ba80aa34c4351f0b05cdec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash


for notice in ~/welcome.txt ~/news.txt
do  [ -f $notice ] && gxmessage -title "_EDITION_TITLE_"                \
                                -file $notice                           \
                                -buttons "OK:1,Don't show this again:0" \
                                -default "OK"                           \
                                -geometry 620x460                       \
                                -center -wrap -ontop -sticky            && rm $notice &
done

~/.config/autostart/autostart-lxde.sh &