├── .bzrignore ├── LICENSE ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── rules └── source │ └── format ├── long-running.bash ├── preexec.bash └── undistract-me.sh /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/.bzrignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/debian/install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /long-running.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/long-running.bash -------------------------------------------------------------------------------- /preexec.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/preexec.bash -------------------------------------------------------------------------------- /undistract-me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jml/undistract-me/HEAD/undistract-me.sh --------------------------------------------------------------------------------