#!/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 &