Skip to content

Instantly share code, notes, and snippets.

View adamki's full-sized avatar
🤙

Adam Ki adamki

🤙
View GitHub Profile
import React, { PropTypes } from 'react';
import { Link } from 'react-router';
import { ChevronDownIcon,
RefineIcon } from 'aileron';
const RefineResults = () => {
return (
<div className="max-width-4 mx-auto px1">
<div className="clearfix">
@adamki
adamki / darkify-slack.sh
Last active November 7, 2018 22:48
Slack Dark mode
#!/bin/bash
echo 'document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css',
success: function(css) {
$("<style></style>").appendTo('head').html(css);
}
});
});' >> ~/../../../Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
@adamki
adamki / notes.md
Last active June 13, 2019 04:59
ubuntu/debian notes

New Machine Setup


General Sanity/First items

  • re-map CapsLock to control/ESC.

Install xcape.

Depending on your DE, this will be slightly different.

@adamki
adamki / index.css
Last active January 13, 2020 20:42
heist
body {
padding: 0;
margin: 0;
overflow: hidden; /* Don't display any scroll bars */
}
#app {
height: 100vh;
width: 100%;