From eed53eba88648da90f33f5522380b1145e4db066 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 19 Jan 2017 17:33:40 -0500 Subject: Revert "Show one digit of each hour in clock" This reverts commit a3555612b6814bdfce0cbc6110891e61252d3980. --- .bin/clock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.bin') diff --git a/.bin/clock.c b/.bin/clock.c index 69d33dae..9eb4dc23 100755 --- a/.bin/clock.c +++ b/.bin/clock.c @@ -18,7 +18,7 @@ int main() { case 0: printf("...%02d...\n", clock->tm_hour); break; case 1: printf("..%02d....\n", clock->tm_hour); break; case 2: printf(".%02d.....\n", clock->tm_hour); break; - case 3: printf("%d......%d\n", clock->tm_hour % 10, (clock->tm_hour + 1) / 10); break; + case 3: printf("%02d....%02d\n", clock->tm_hour, clock->tm_hour + 1); break; case 4: printf(".....%02d.\n", clock->tm_hour + 1); break; case 5: printf("....%02d..\n", clock->tm_hour + 1); break; case 6: printf("...%02d...\n", clock->tm_hour + 1); break; -- cgit 1.4.1 >refs log tree commit diff
path: root/.config/awesome/icons/clock.png (unfollow)
Commit message (Expand)Author
2012-10-05Use Base16 colors in TerminalJune McEnroe
2012-09-04Add dropboxJune McEnroe
2012-08-31Use real pacman for update checkingJune McEnroe
2012-08-31Rewrote zshrcJune McEnroe
2012-08-24Make awesome play nice with latest viciousJune McEnroe
2012-08-24Remove pkgfile hookJune McEnroe