Skip to content

Instantly share code, notes, and snippets.

View tzbob's full-sized avatar

Bob R tzbob

  • Cleverbase
View GitHub Profile
@tzbob
tzbob / xmonad.hs
Created January 21, 2012 11:18
xmonad.hs
--
-- File : ~/.xmonad/xmonad.hs (for Xmonad >= 0.9)
-- Adapted by: Bob Reynders
-- Author : Thayer Williams
-- Website : http://cinderwick.ca/
-- Desc : A simple, mouse-friendly xmonad config geared towards
-- netbooks and other low-resolution devices.
--
-- dzen is used for statusbar rendering, with optional mouse
-- integration provided by xdotool:
@tzbob
tzbob / config.py
Created April 17, 2012 22:14
Qtile config
from libqtile.manager import Key, Screen, Drag, Group
from libqtile.command import lazy
from libqtile import layout, bar, widget, hook
mod = "mod1"
win = "mod4"
# Keybinds: Key([modifiers], "key", action())
keys = [
Key([mod], "space", lazy.nextlayout()),
dirtyFrameHack = function() {
$("a").unbind("click");
return $("a").click(function(e) {
var href;
href = $(this).attr("href");
if (!~href.indexOf("#")) {
window.open(href);
return false;
}
});
urxvt.scrollBar: false
urxvt.font: xft:inconsolata:size=11
urxvt.boldFont: xft:inconsolata:size=11
urxvt.cursorColor: #7F7F7F
Xft.hintstyle: hintfull
Xft.hinting: true
Xft.antialias: true
Xft.rgba: rgb
[options]
resize_grip = false
scroll_on_output = false
scroll_on_keystroke = true
audible_bell = false
visible_bell = false
mouse_autohide = false
allow_bold = false
dynamic_title = true
urgent_on_bell = true
@tzbob
tzbob / .vimrc
Created September 1, 2013 12:11
.vimrc
" Vundle "
" ========== "
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
@tzbob
tzbob / .vimrc
Created October 16, 2013 19:55
current .vimrc using vundle as bundler
" Vundle "
" ========== "
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
[options]
resize_grip = false
scroll_on_output = false
scroll_on_keystroke = true
audible_bell = false
visible_bell = true
mouse_autohide = false
allow_bold = false
dynamic_title = true
urgent_on_bell = true
@tzbob
tzbob / bashrc
Created November 18, 2013 12:52
#
# ~/.bashrc
#
Color_Off='\e[0m' # Text Reset
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
@tzbob
tzbob / build.sbt
Created September 9, 2016 12:06
sbt-web-scalajs alternative structure
lazy val foo = crossProject
.in(file("."))
.settings(
organization := "foo",
name := "foo",
)
.jvmSettings(
...
)
.jsSettings(