summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--glitchyclock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glitchyclock.c b/glitchyclock.c
index aaa8a19..5061cc8 100644
--- a/glitchyclock.c
+++ b/glitchyclock.c
@@ -151,7 +151,7 @@ static gboolean draw_sig(GtkWidget *widget, cairo_t *cr, struct glitchyclock *gc
int clock_hours, clock_minutes, clock_seconds;
int glitch = 0;
double duty;
- const char *frozenstr = "vl:68";
+ const char *frozenstr = "uK:IW";
/* Overall background */
cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
@@ -238,7 +238,7 @@ static gboolean draw_sig(GtkWidget *widget, cairo_t *cr, struct glitchyclock *gc
if ( glitch ) {
if ( fmod(seconds_elapsed, 0.05) > duty*0.05 ) {
- strcpy(timestr, "00:00");
+ strcpy(timestr, "Tz:Yi");
} else {
strcpy(timestr, frozenstr);
}