Not an issue, more of a request #686

Open
opened 2021-12-02 15:17:27 +01:00 by Tayergo · 1 comment
Tayergo commented 2021-12-02 15:17:27 +01:00 (Migrated from github.com)

Is it possible to add a default theme that is analogous to the commodore64? It'd be a nice update, although definitely not of importance.

Is it possible to add a default theme that is analogous to the commodore64? It'd be a nice update, although definitely not of importance.
ghost commented 2022-07-04 03:35:14 +02:00 (Migrated from github.com)

Hi @XeonBionic

I attempted to make a C64 like theme.

Maybe you or someone will find this cute :)


image

Steps:
1- Import custom theme .json (or manually set font and colors)

{
  "backgroundColor": "#202f93",
  "fontColor": "#5867cd",
  "flickering": 0,
  "horizontalSync": 0,
  "staticNoise": 0,
  "chromaColor": 0.7646,
  "saturationColor": 0.6527,
  "screenCurvature": 0,
  "glowingLine": 0,
  "burnIn": 0.1036,
  "bloom": 0,
  "rasterization": 0,
  "jitter": 0,
  "rbgShift": 0,
  "brightness": 0.6039,
  "contrast": 0.7334,
  "ambientLight": 0,
  "windowOpacity": 1,
  "fontName": "COMMODORE_64_SCALED",
  "fontWidth": 1.15,
  "margin": 1,
  "blinkingCursor": true,
  "frameMargin": 1,
  "name": "my-c64",
  "version": 2
}

2- For a little extra touch, go settings and paste below code for "Use custom command instead of shell at startup"

bash -c '
columns="$(tput cols)";
title="**** COMMODORE 64 BASIC V2 ****";
echo;
printf "%*s\\n" $(( (${#title} + columns) / 2)) "$title";
subtitle="64K RAM SYSTEM   38911 BASIC BYTES FREE";
echo;
printf "%*s\\n" $(( (${#subtitle} + columns) / 2)) "$subtitle";
echo;
bash;
'

This will center title and subtitle of your choosing.


Thanks to these people:

https://superuser.com/a/829870
https://stackoverflow.com/a/18756584
https://stackoverflow.com/a/56408349
https://www.youtube.com/watch?v=G7ck0Jot7bU

Hi @XeonBionic I attempted to make a C64 like theme. Maybe you or someone will find this cute :) --- ![image](https://user-images.githubusercontent.com/106402309/177066292-1b2a5a89-8c21-43f6-beda-608f6a79201a.png) **Steps:** 1- Import custom theme .json (or manually set font and colors) ```json { "backgroundColor": "#202f93", "fontColor": "#5867cd", "flickering": 0, "horizontalSync": 0, "staticNoise": 0, "chromaColor": 0.7646, "saturationColor": 0.6527, "screenCurvature": 0, "glowingLine": 0, "burnIn": 0.1036, "bloom": 0, "rasterization": 0, "jitter": 0, "rbgShift": 0, "brightness": 0.6039, "contrast": 0.7334, "ambientLight": 0, "windowOpacity": 1, "fontName": "COMMODORE_64_SCALED", "fontWidth": 1.15, "margin": 1, "blinkingCursor": true, "frameMargin": 1, "name": "my-c64", "version": 2 } ``` 2- For a little extra touch, go settings and paste below code for "Use custom command instead of shell at startup" ``` bash -c ' columns="$(tput cols)"; title="**** COMMODORE 64 BASIC V2 ****"; echo; printf "%*s\\n" $(( (${#title} + columns) / 2)) "$title"; subtitle="64K RAM SYSTEM 38911 BASIC BYTES FREE"; echo; printf "%*s\\n" $(( (${#subtitle} + columns) / 2)) "$subtitle"; echo; bash; ' ``` This will center title and subtitle of your choosing. --- Thanks to these people: https://superuser.com/a/829870 https://stackoverflow.com/a/18756584 https://stackoverflow.com/a/56408349 https://www.youtube.com/watch?v=G7ck0Jot7bU
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: seeseemelk/cool-retro-term#686
No description provided.