Skip to content
View 161043261's full-sized avatar
😇
Focusing
😇
Focusing
Block or Report

Block or report 161043261

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
161043261/README.md

yukino

// ==UserScript==
// @name        fonts
// @namespace   fonts
// @match       https://github.com/*
// @version     0.0.0
// @grant       none
// @description fonts
// ==/UserScript==

// rm -rf *Extended* *Extra* *Heavy* *Medium* *Oblique* *Thin*
const fonts = "Iosevka SS05, Sarasa Mono SC, Monaco, PingFang SC, Cascadia Code, Microsoft YaHei, Iosevka SS04, Iosevka SS05";
(function (css) {
    let head, style;
    head = document.getElementsByTagName("head")[0];
    if (!head) {
        return;
    }
    style = document.createElement("style");
    style.innerHTML = css;
    head.appendChild(style);
})("code, .blob-code, .blob-code-marker, pre, .react-code-text, * { font-family: " + fonts + " }");

Spotify

Pinned

  1. plant-disease-detection plant-disease-detection Public archive

    Back-end project of plant disease detection platform

    Python