├── .gitignore ├── COPYING ├── Imakefile ├── Makefile ├── README.md ├── X10 ├── Makefile └── xclock.c ├── alarm.c ├── alarm.h ├── analog.xbm ├── bell.xbm ├── cat.xbm ├── catback.xbm ├── catclock.gif ├── catclock.hlp ├── catclock.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── cattie.xbm ├── catwhite.xbm ├── digital.xbm ├── eyes.xbm ├── patchlevel.h ├── readme_original ├── tail.xbm ├── xclock.ad ├── xclock.c ├── xclock.man └── xclock.xclock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/COPYING -------------------------------------------------------------------------------- /Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/Imakefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/README.md -------------------------------------------------------------------------------- /X10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/X10/Makefile -------------------------------------------------------------------------------- /X10/xclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/X10/xclock.c -------------------------------------------------------------------------------- /alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/alarm.c -------------------------------------------------------------------------------- /alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/alarm.h -------------------------------------------------------------------------------- /analog.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/analog.xbm -------------------------------------------------------------------------------- /bell.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/bell.xbm -------------------------------------------------------------------------------- /cat.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/cat.xbm -------------------------------------------------------------------------------- /catback.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catback.xbm -------------------------------------------------------------------------------- /catclock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catclock.gif -------------------------------------------------------------------------------- /catclock.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catclock.hlp -------------------------------------------------------------------------------- /catclock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catclock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /catclock.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catclock.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /catclock.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catclock.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /cattie.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/cattie.xbm -------------------------------------------------------------------------------- /catwhite.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/catwhite.xbm -------------------------------------------------------------------------------- /digital.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/digital.xbm -------------------------------------------------------------------------------- /eyes.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/eyes.xbm -------------------------------------------------------------------------------- /patchlevel.h: -------------------------------------------------------------------------------- 1 | #define PATCHLEVEL 0 2 | -------------------------------------------------------------------------------- /readme_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/readme_original -------------------------------------------------------------------------------- /tail.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/tail.xbm -------------------------------------------------------------------------------- /xclock.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/xclock.ad -------------------------------------------------------------------------------- /xclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/xclock.c -------------------------------------------------------------------------------- /xclock.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarkyTheDog/catclock/HEAD/xclock.man -------------------------------------------------------------------------------- /xclock.xclock: -------------------------------------------------------------------------------- 1 | Fri. 2:33 pm Test Message! 2 | --------------------------------------------------------------------------------