├── .gitignore ├── Makefile ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── patches │ ├── replace-hard-coded-path.diff │ └── series ├── rules ├── set-overscan.install ├── set-overscan.manpages └── source │ └── format ├── doc ├── overscan.1 └── set-overscan.8 ├── overscan.c └── set-overscan /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/patches/replace-hard-coded-path.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/debian/patches/replace-hard-coded-path.diff -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | replace-hard-coded-path.diff 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | %: 3 | dh $@ 4 | -------------------------------------------------------------------------------- /debian/set-overscan.install: -------------------------------------------------------------------------------- 1 | set-overscan usr/sbin 2 | -------------------------------------------------------------------------------- /debian/set-overscan.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/debian/set-overscan.manpages -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /doc/overscan.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/doc/overscan.1 -------------------------------------------------------------------------------- /doc/set-overscan.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/doc/set-overscan.8 -------------------------------------------------------------------------------- /overscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/overscan.c -------------------------------------------------------------------------------- /set-overscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukscone/set_overscan/HEAD/set-overscan --------------------------------------------------------------------------------