Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

[
{
"type": "container",
"title": "Plex",
"description": "Plex Media Server",
"categories": ["mediaServer"],
"platform": "linux",
"logo": "https://cdn.frontify.com/api/screen/thumbnail/ob_O2NZ8KrKa5sLQkVIt-C-HKRSEGmIR7Uc7ECmBO7V1KloT9X8qwuHnSBnivKcoFhscbltD69vbmrlYJ0qjgw/840",
"image": "registry:latest",
"network": "host",

Keybase proof

I hereby claim:

  • I am brookke on github.
  • I am brookke (https://keybase.io/brookke) on keybase.
  • I have a public key whose fingerprint is E73C 79A1 AF23 044C 42EF A205 B29C C129 1B8E 27A3

To claim this, I am signing this object:

@Brookke
Brookke / Info.md
Last active August 29, 2015 14:20 — forked from code-cookies/Info.md

This is some custom css that changes the way tweetdeck looks.

From the old dark theme (https://www.dropbox.com/s/27s5ck421jiz50r/Screenshot%202014-04-09%2015.08.09.png) to this

alt text

To install on mac right click on the tweet deck app then click show package contents and navigate to /Contents/Resources/htdocs/web/css/ and then open the app-dark.(some string).css file. Add the css code above to the bottom of this file and make sure that the tweetdeck theme is set to dark. Other platforms will follow soon.

This is still a work in progress but if you have any ideas or questions just tweet me @code_cookies.

@Brookke
Brookke / run.py
Last active August 29, 2015 14:13
Replaces colour to color in css files.
import os
oldfilename = 'style.css'
newfilename = 'new.css'
replacements = {'colour':'color'}
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
infile = open(os.path.join(__location__, oldfilename))
outfile = open(os.path.join(__location__, newfilename), 'w')