Skip to content

Instantly share code, notes, and snippets.

View itsgoofer's full-sized avatar
🕶️
Probably coding rn.

Goofer itsgoofer

🕶️
Probably coding rn.
  • GooferVille
  • The Internet
  • 14:16 (UTC +02:00)
  • X @itsgoofer
View GitHub Profile
@itsgoofer
itsgoofer / WSL 2 GNOME Desktop.md
Created January 20, 2023 17:23 — forked from Ta180m/WSL 2 GNOME Desktop.md
Set up a GNOME desktop environment on WSL 2

WSL 2 GNOME Desktop

NOTE: If you want the ultimate Linux desktop experience, I highly recommend installing Linux as your main OS. I no longer use Windows (except in a VM) so I will not be maintaining this guide anymore.

Think Xfce looks dated? Want a conventional Ubuntu experience? This tutorial will guide you through installing Ubuntu's default desktop environment, GNOME.

GNOME is one of the more complex — and that means more difficult to run — desktop environments, so for years people couldn't figure [o

// Released under MIT license: http://www.opensource.org/licenses/mit-license.php
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);
module Jekyll
class Pagination < Generator
# This generator is safe from arbitrary code execution.
safe true
# Generate paginated pages if necessary.
#
# site - The Site.
#