Skip to content

Instantly share code, notes, and snippets.

View pablox-cl's full-sized avatar

Pablo Olmos de Aguilera Corradini pablox-cl

View GitHub Profile
@pablox-cl
pablox-cl / gtk.css
Created August 19, 2012 19:54
Xfce-dusk theme fix
@define-color fg_active #dadada;
@define-color fg_insensitive #151515;
@define-color fg_normal #ffffff;
@define-color fg_prelight #fcfcfc;
@define-color fg_selected #fcfcfc;
@define-color bg_active #151515;
@define-color bg_insensitive #303030;
@define-color bg_normal #232323;
@pablox-cl
pablox-cl / .tmux.conf
Created September 7, 2012 20:55
Tmux configuration
# Use C-a instead of C-b as the prefix
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
#set 256 colors
set -g default-terminal "screen-256color"
# set default shell
#set -g default-command "exec /bin/bash"
@pablox-cl
pablox-cl / xmessage
Created September 25, 2012 19:03
Wrapper for xmessage to prevent it from run itself if xmonad has compile errors
#!/bin/bash
#
# Author: Pablo Olmos de Aguilera C. pablo at glatelier dot org
#
# Little wrapper to prevent xmessage to pop if errors are thrown when
# (re)compiling xmonad. Of course this assumes that you should recompile it from
# the command line.
#
# Just make sure your $PATH is correctly set, before the original xmessage to
# this code run.
@pablox-cl
pablox-cl / ttf-meslo.PKGBUILD
Last active December 11, 2015 09:28
Meslo font pkgbuild
# Maintainer: Pablo Olmos de Aguilera C. <pablo at glatelier dot org>
# Contributor: name <david at goodlad dot ca>
# Contributor: name <tang0th at gmx dot com>
pkgname=ttf-meslo
_pkgname=Meslo
pkgver=1.2.1
pkgrel=1
pkgdesc="Meslo LG is a customized version of Apple's Menlo font (includes DZ version)"
arch=('any')
@pablox-cl
pablox-cl / colemak
Last active December 11, 2015 09:38
Colemak Edition Dreymar Special Symbols
// $XKeyboardConfig$
// *****************************************************************************************
// ****** ******
// ***** Colemak layouts - additions, locales and learning steps as variants *****
// ***** by Øystein Bech "DreymaR" Gadmar, 2011 *****
// ****** ******
// *****************************************************************************************
default
# ignore everything
*
!.gitignore
# except PKGBUILD needed files
!PKGBUILD
!*.install
!ChangeLog
# common wing-man files
#! /usr/bin/env python
""" Convert values between RGB hex codes and xterm-256 color codes.
Nice long listing of all 256 colors and their codes. Useful for
developing console color themes, or even script output schemes.
Resources:
* http://en.wikipedia.org/wiki/8-bit_color
* http://en.wikipedia.org/wiki/ANSI_escape_code
@pablox-cl
pablox-cl / Xdefaults.jellybeans
Last active February 14, 2021 05:43
Jellybeans color palette for rxvt and xfce4-terminal
# Adjust Rxvt to suit your terminal emulator
# Created with
# ITERM_COLOR_MULTIPLIER=2.5 ./itermcolors2Xdefaults.rb Jellybeans.itermcolors
# https://github.com/richo/jellybeans.vim/blob/c7ff7e9555881a5671fcc8753b381ba142b5ea82/Xdefaults/jellybeans.Xdefaults
Rxvt*color0: #393939
Rxvt*color1: #ca674a
Rxvt*color2: #96a967
Rxvt*color3: #d3a94a
Rxvt*color4: #5778c1
Rxvt*color5: #9c35ac
@pablox-cl
pablox-cl / PKGBUILD.gitignore
Created September 22, 2013 23:03
The .gitignore that I use for building PKGBUILD for the AUR.
# ignore everything
*
!.gitignore
# except PKGBUILD needed files
!PKGBUILD
!*.install
!ChangeLog
# common wing-man files
@pablox-cl
pablox-cl / Gruntfile.js
Last active December 25, 2015 11:48
Gruntfile that's generating slow performance with vim-javascript
// Generated on 2013-10-13 using generator-webapp 0.4.3
'use strict';
// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'
module.exports = function (grunt) {