Install fbterm
via your favorite package manager
pacman -S fbterm
/* | |
* I add this to html files generated with pandoc. | |
*/ | |
html { | |
font-size: 100%; | |
overflow-y: scroll; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} |
""" | |
DESCRIPTION: | |
Using SublimeREPL, this plugin allows one to easily transfer AND | |
evaluate blocks of python code. The code automatically detect python | |
blocks and executes only code lines, omitting empty space and comments. | |
One can skips space, comment blocks and comment lines by executing on | |
empty lines, comments etc. | |
REQUIRES: | |
working with only 2 groups in the window. the main group (group 0) |
Operator Mono w/ Italics on OSX Vim
require 'net/http' | |
require 'open-uri' | |
require 'open3' | |
require 'json' | |
require 'optparse' | |
require 'tempfile' | |
options = {} | |
OptionParser.new do |opts| | |
opts.banner = "Usage: #{__FILE__} [options]" |
FYI, for those of us running Debian based systems rather than RedHat, the BlueJeans RPM can be successfully installed via alien
Steps to install BlueJeans on Debian
sudo apt-get install alien
sudo alien --to-deb --scripts bluejeans-*.rpm
sudo dpkg -i bluejeans_*.deb
/opt/bluejeans/bluejeans-bin
You may get an error loading the expected udev library
#!/usr/bin/env bash | |
# You can call this script like this: | |
# $ ./brightnessControl.sh up | |
# $ ./brightnessControl.sh down | |
# Script inspired by these wonderful people: | |
# https://github.com/dastorm/volume-notification-dunst/blob/master/volume.sh | |
# https://gist.github.com/sebastiencs/5d7227f388d93374cebdf72e783fbd6a |