7 lines
312 B
Bash
Executable file
7 lines
312 B
Bash
Executable file
# Copyright (c) 2008-2012 undistract-me developers. See LICENSE for details.
|
|
#
|
|
# Check for interactive bash and that we haven't already been sourced.
|
|
[ -z "$BASH_VERSION" -o -z "$PS1" -o -n "$last_command_started_cache" ] && return
|
|
|
|
. $HOME/bin/long-running.bash
|
|
notify_when_long_running_commands_finish_install
|