Skip to content

Instantly share code, notes, and snippets.

@mezcel
Last active February 3, 2021 09:16
Show Gist options
  • Save mezcel/4de4493be820be7529efe75d89bf9176 to your computer and use it in GitHub Desktop.
Save mezcel/4de4493be820be7529efe75d89bf9176 to your computer and use it in GitHub Desktop.
99 Cents

99-cents

About

  • A vaporwave/lo-fi inspired desktop theme. Inspired by AriZona memes & branding.
  • A Green Theme

Added a green scapular for a more adult and inspirational mood. It pairs well with the ginseng-green.json Windows Terminal Theme

Primary usecase

  • Win10 desktop and text editor theme.
  • The Windows Terminal theme was designed with Vim syntax highlighing in mind.
    • bash and C look fine
    • Markdown and others have some color clashing.

Contents

wallpapers

main wallpaper alt wallpaper 1 alt wallpaper 2 lock screen

I took the arizona+can+stickers from link. I don't know where I got the wallpapers from, or where the host took them from.

text editer themems

  • notepad++ color scheme: ginseng-green.xml
  • Windows Terminal color scheme: ginseng-green.json

I do want a theme for the Geany text editor... but it will take too long. So maybe one day.


Outdated screenshot

  • Wallpaper > ginseng.png
  • Windows Terminal > Powershell > Vim > Readme.md
  • Notepad++ > Readme.md

outdated-screenshot.png


Patch

bookmark-renderer.git patch

  • Reference project link
  • The patch is just focused on the cover/main page.

Steps

  1. Copy over the wallpaper
    • copy the .\ginseng-skin.jpg to bookmark-renderer.git\view\img\ginseng-skin.jpg
    :: write this in a command prompt or batch file
    
    parentDirectory=WhereverTheAppIs
    copy .\ginseng-skin.jpg %parentDirectory%\bookmark-renderer.git\view\img\ginseng-skin.jpg
  2. Add wallpaper to css
    • add the .ginsengSkin css class to bookmark-renderer.git\view\css\myStyle.css
    /* add this anywhere, perhaps the top, within the bookmark-renderer.git\view\css\myStyle.css */
    
    .ginsengSkin {
    	background: url("../img/ginseng-skin.jpg");
    	background-repeat: no-repeat;
    	background-size: auto;
    	background-size: 100%;
    
    }
  3. Modify the app's default css color scheme in js
    • diff applied to bookmark-renderer.git\main.js
    --- a/main.js
    +++ b/main.js
    @@ -15,6 +15,7 @@
    
     // Global theme css variable
     var defaultCssTheme = "w3-theme-blue-grey.css";
    +defaultCssTheme = "w3-theme-teal.css";
    
     var isDark = false;
  4. Modify the load/home/splash page bookmark-renderer.git\view\index.html
    • add .ginsengSkin class to the body tag
    • remove the .w3-theme-l4, .w3-theme-l3and .w3-theme-l2, class so that the .w3-row is transparent
    • Included, is a copy of the "latest" index.html design.
    • diff applied in the kiosk-example.jpg screenshot:
--- a/index.html
+++ b/index.html
@@ -15,7 +15,7 @@
		 <link rel="stylesheet" href="css/myStyle.css">
	 </head>

-    <body class="w3-theme-l5">
+    <body class="w3-theme-l5 ginsengSkin">
		 <h3 class="w3-center">kiosk</h3>
		 <div class="w3-card w3-center">
			 Node
@@ -23,7 +23,7 @@
			 <p></p>
		 </div>

-        <div class="w3-row w3-card w3-theme-l4 w3-center">
+        <div class="w3-row w3-card w3-center">
			 <a id="btn1" class="w3-col s4 w3-btn w3-hover-theme" href="html/bookmarks.html">
				 <p>Bookmarks <sub>1</sub></p>
			 </a>
@@ -39,12 +39,12 @@

		 <p></p>

-        <div class="w3-row w3-card w3-theme-l3 w3-center">
+        <div class="w3-row w3-card w3-center">
			 <a id="btn4" class="w3-col s6 w3-btn w3-hover-theme"><p>Gist Directory <sub>4</sub></p></a>
			 <a id="btn5" class="w3-col s6 w3-btn w3-hover-theme"><p>Github Directory <sub>5</sub></p></a>
		 </div>

-        <div class="w3-row w3-card w3-theme-l2 w3-border-top w3-center">
+        <div class="w3-row w3-card w3-border-top w3-center">
			 <a id="btn6" class="w3-col s6 w3-btn w3-hover-theme"><p>VS Code <sub>6</sub></p></a>
			 <a id="btn7" class="w3-col s6 w3-btn w3-hover-theme"><p>Windows Terminal <sub>7</sub></p></a>
		 </div>
  1. OPTIONAL: update the app favicon (i may make a new one, not a fan of the pink-ness)
    • replace the app's favicon
    :: write this in a command prompt or batch file
    
    parentDirectory=WhereverTheAppIs
    copy .\electron-pink.ico %parentDirectory%\bookmark-renderer.git\view\img\favicon.ico

general idea (preview)

  • General ideas screenshots.
    basic a bit more embellished
This file has been truncated, but you can view the full file.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment