From 73a0d5a1be6df978d6a51b21ad470baf56aeabf7 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Fri, 13 Sep 2024 09:26:31 -0400 Subject: [PATCH] ? --- mccs-it/thermal/modules/Thermal.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/mccs-it/thermal/modules/Thermal.js b/mccs-it/thermal/modules/Thermal.js index 294ea87..81b8267 100644 --- a/mccs-it/thermal/modules/Thermal.js +++ b/mccs-it/thermal/modules/Thermal.js @@ -23,13 +23,12 @@ module.exports = { credentials(username, studentId) { // Create the output text return [ - { font: 'Courier-Bold', text: `Username: ${username}` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, + { font: 'public/Outfit-Regular.ttf', text: `Username:` }, + { font: 'public/RobotoMono-Regular.ttf', text: `${username}\n` }, { font: 'public/Outfit-Regular.ttf', text: 'Email:' }, - { font: 'Courier-Bold', text: `${username}@kvcc.me.edu` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, - { font: 'Courier-Bold', text: `Student ID: ${studentId}` }, - { font: 'public/Outfit-Regular.ttf', text: '' }, + { font: 'public/RobotoMono-Regular.ttf', text: `${username}@kvcc.me.edu\n` }, + { font: 'public/Outfit-Regular.ttf', text: `Student ID:` }, + { font: 'public/RobotoMono-Regular.ttf', text: `${studentId}\n` }, { font: 'public/Outfit-Regular.ttf', text: 'Note: the MyKV Portal uses your username to sign in, not email.' }, ] },