fix: update cookie and fortune app

This commit is contained in:
2024-05-22 22:40:26 +02:00
parent 8faf3009c0
commit 4d7763d37c
2 changed files with 10 additions and 12 deletions

View File

@@ -4,9 +4,9 @@ import badger_os
from widgets import draw_window, pprint, ptitle, plength, ppara, button, draw_ui
from random import random
IMAGE_WIDTH = 96
IMAGE_HEIGHT = 96
DELTA = 0
# IMAGE_WIDTH = 96
# IMAGE_HEIGHT = 96
# DELTA = 0
# Check that the fortune directory exists, if not, make it
try:
@@ -49,9 +49,9 @@ def draw_clippy():
height = 106
draw_window(display, x, y, width, height, " Information ")
clippy_dat = bytearray(int(IMAGE_WIDTH * IMAGE_HEIGHT / 8))
open(f"images/logo.bin", "rb").readinto(clippy_dat)
display.image(clippy_dat, IMAGE_WIDTH, IMAGE_HEIGHT, 212, 56)
# clippy_dat = bytearray(int(IMAGE_WIDTH * IMAGE_HEIGHT / 8))
# open(f"images/logo.bin", "rb").readinto(clippy_dat)
# display.image(clippy_dat, IMAGE_WIDTH, IMAGE_HEIGHT, 212, 56)
# scrollbars
display.pen(0)