Skip to content

Instantly share code, notes, and snippets.

View g307m's full-sized avatar
🐡
aeugh

Grant g307m

🐡
aeugh
  • Somewhere around Dallas, TX
View GitHub Profile
@g307m
g307m / normalreddit.user.css
Last active September 28, 2020 15:06
Normal Old Reddit Logo
/* ==UserStyle==
@name normal reddit logo
@namespace https://gist.github.com/grantlmul/7304d2d6cec536c10779f32ba384b647
@version 1.0.0
@description gets rid of the blm logo and any future logo changes on old reddit
@author grantlmul
==/UserStyle== */
@-moz-document domain("reddit.com") {
#header-img {
display: block;
@g307m
g307m / userChrome.css
Created August 2, 2020 15:18
Simplefox Windows
:root {
--uc-bg-color: #fff;
--uc-show-new-tab-button: none;
--uc-show-tab-separators: none;
--uc-tab-separators-color: none;
--uc-tab-separators-width: none;
--uc-tab-fg-color: #000;
--uc-mg-color: #F5F6F7;
}
/* Options with pixel amounts could need to be adjusted, as this only works for my laptop's display */
@g307m
g307m / breakingbedrock.txt
Created May 4, 2019 18:16
Making Bedrock Breakable
First, download this and set up: https://github.com/ModificationStation/1.7.3-LTS
Once you've set up your enviroment, open Eclipse and open Block.java.
Go to line 766 and replace
.setBlockUnbreakable
with this:
.setHardness(1.5F)
This will make bedrock mineable, as if it were stone.