blob: 51c9b5992cc6253d029c7f100d34ef8460de8218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
cfgdir=${XDG_CONFIG_DIR:-$HOME/.config}
# Don't do anything if gnome-tour isn't installed
gnome_tour_path=$(which gnome-tour 2>/dev/null)
if test -z "${gnome_tour_path}"; then
rm -f $cfgdir/run-welcome-tour
exit
fi
gnome-tour
rm -f $cfgdir/run-welcome-tour
|