I hereby claim:
- I am shadowkyogre on github.
- I am shadowkyogre (https://keybase.io/shadowkyogre) on keybase.
- I have a public key ASBdEHGsfD550WdpWiycXDeQgzrMmXniUIqvCavJIpRFjQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
from ast import literal_eval | |
from collections import Counter, OrderedDict | |
from itertools import chain | |
import math | |
import yaml | |
## Constants | |
STATS = ('str', 'dex', 'con', 'int', 'wis', 'cha') |
A Pen by ShadowKyogre on CodePen.
var ConfigField = function(key, dfv, label, toNode) { | |
this.key = key; | |
this.dfv = dfv; | |
this.label = label; | |
this.toNode = toNode; | |
} | |
var Nodifiers = { | |
textarea: function() { | |
var node = document.createElement('textarea'); |
''' | |
I AM A MODULE LEVEL DOCSTRING | |
.. topic:: Topic Title | |
Subsequent indented lines comprise | |
the body of the topic, and are | |
interpreted as body elements. | |
.. attention:: |
Welcome! You've likely stumbled across this wondering, "What the heck is this?"
It's a gist of all the patches I've applied to my personal copy of compiz (likely will try to port these to fusilli too). Here's what they do:
emerald_no_rmenu.patch
: Disable the right-click menu in the decorations.
It's rather unsightly since that menu is not as configurable as Compiz-Boxmenu. On
an interesting note, when I disabled this, it also disabled Compiz showing#!/bin/bash | |
for num in {0..15};do | |
color="$(grep "^color${num}\s\+" "${1:-${HOME}/.config/termite/config}"|grep -o "[0-9a-f]\{3,6\}$")" | |
rhex="${color:0:2}" | |
ghex="${color:2:2}" | |
bhex="${color:4:2}" | |
r="$((0x${rhex}))" | |
g="$((0x${ghex}))" |
#!/bin/bash | |
happened=1 | |
for window in $(recsel_windows.py -l -c 0,0.5,1,0.6) | |
do | |
happened=0 | |
xdotool windowactivate --sync $window key "$1" | |
done | |
if [ $happened -a -n "$2" ];then |