Enter about:config
and change the following configurations:
Key | Value |
---|---|
gfx.font_rendering.cleartype_params.cleartype_level | 0 |
gfx.webrenderer.all | true |
gfx.font_rendering.cleartype_params.rendering_mode | 5 |
gfx.use_text_smoothing_setting | true |
// Open up /etc/environment and then add the following line to the end of it. | |
FREETYPE_PROPERTIES="cff:no-stem-darkening=0 autofitter:no-stem-darkening=0" |
font-family = Berkeley Mono | |
font-style = Regular | |
font-size = 13 | |
font-thicken = true | |
adjust-underline-position = 40% | |
adjust-underline-thickness = -60% | |
cursor-style = block | |
cursor-style-blink = false |
Shader "Unlit/InfiniteGrid" | |
{ | |
Properties | |
{ | |
[Toggle] _WorldUV ("Use World Space UV", Float) = 1.0 | |
_GridScale ("Grid Scale", Float) = 1.0 | |
_GridBias ("Grid Bias", Float) = 0.5 | |
_GridDiv ("Grid Divisions", Float) = 10.0 | |
_BaseColor ("Base Color", Color) = (0,0,0,1) | |
_LineColor ("Line Color", Color) = (1,1,1,1) |
// https://www.reedbeta.com/blog/hash-functions-for-gpu-rendering/ | |
uint pcg_hash(uint input) | |
{ | |
uint state = input * 747796405u + 2891336453u; | |
uint word = ((state >> ((state >> 28u) + 4u)) ^ state) * 277803737u; | |
return (word >> 22u) ^ word; | |
} | |
{ |
# Format: <SettingName>: <Settingvalue> | |
# Setting name must appear at start of line and there must be whitespace after the colon. | |
# Multiple values can be comma separated or on subsequent lines. | |
# | |
# General | |
# | |
# Open the last workspace opened when starting 10x | |
OpenLastWorkspaceOnStartup: false |
;;; naysayer-theme.el --- Aftereight theme for Emacs. | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or | |
;; (at your option) any later version. | |
;; This program is distributed in the hope that it will be useful, | |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Enter about:config
and change the following configurations:
Key | Value |
---|---|
gfx.font_rendering.cleartype_params.cleartype_level | 0 |
gfx.webrenderer.all | true |
gfx.font_rendering.cleartype_params.rendering_mode | 5 |
gfx.use_text_smoothing_setting | true |
Xcursor.theme: whiteglass | |
Xcursor.size: 16 | |
Xft.rgba: none | |
Emacs*font: -misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso10646-1 | |
Emacs*menubar.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*popup.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*dialog.font: Fixed:pixelsize=13:style=SemiCondensed:lang=ru | |
Emacs*foreground: grey90 | |
Emacs*background: grey20 |
let | |
mozilla = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); | |
nixpkgs = import <nixpkgs> { overlays = [ mozilla ]; }; | |
in | |
with nixpkgs; | |
mkShell { | |
buildInputs = [ | |
clang # needed for bindgen |